@extends('layouts.app') @push('styles') @endpush @section('content') @auth @php $editingId = request()->query('edit'); @endphp

TB assessment

Capture a focused screening entry @if ($editingId)
Editing record #{{ $editingId }} Create new
@endif
Manage
@csrf
@csrf
@csrf
@csrf
@csrf
@csrf
@if (session('status'))
{{ session('status') }}
@endif @if ($errors->any())
Please fix the following:
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @if ($editingId) @method('PUT') @endif

TB risk & diagnostics
@php $symptoms = [ 'fever' => 'Fever', 'cough' => 'Cough', 'hemoptysis' => 'Hemoptysis', 'weight_loss' => 'Weight loss', 'appetite_loss' => 'Loss of appetite', 'chest_pain' => 'Chest pain', 'night_sweats' => 'Night sweats', 'neck_glands' => 'Neck glands', 'fatigue' => 'Fatigue', ]; @endphp
@foreach ($symptoms as $key => $label)
@endforeach
Select all that apply and capture duration in days.
No symptoms selected

Investigations

Assessment & plan
Clear @if ($editingId) @endif
@if ($editingId)
@csrf @method('DELETE')
@endif
@endauth @endsection @push('scripts') @endpush