@extends('layouts.app') @section('content')

New Visit

Register patient for clinical care

Patient
{{ $patient->first_name }} {{ $patient->last_name }}
Patient No
{{ $patient->patient_no ?? '—' }}
Age
@if(!empty($patient->date_of_birth)) {{ \Carbon\Carbon::parse($patient->date_of_birth)->age }} years @else — @endif
Gender
{{ $patient->gender ?? '—' }}
@if ($errors->any())
Fix the following:
@endif
@csrf
Visit Registration
Facility = single service · Outreach = multiple services
@foreach($services as $service) @endforeach
Routing Summary
• 0 services selected
• 0 require triage
• 0 direct queue
Cancel
@endsection