@extends('layouts.nurse') @section('title', 'Create Health Record') @section('content')

Create Health Record

Record maternal health information for today's visit

@if($appointment)

Patient Information

Patient Name

{{ $appointment->mother->expectantMother->mother_full_name ?? $appointment->mother->name }}

IC Number

{{ $appointment->mother->expectantMother->ic_number ?? 'N/A' }}

Appointment Time

{{ $appointment->slot_label }}

@endif
@csrf @if($appointment) @endif

Visit Information

@error('visit_date')

{{ $message }}

@enderror
@error('gestational_week')

{{ $message }}

@enderror
@error('general_notes')

{{ $message }}

@enderror

Select Tests to Perform

Select the tests you want to perform during this visit. You can add more tests later.

@foreach($availableTests as $testType => $testName) @endforeach
Cancel

Quick Tips

  • Select the tests you plan to perform during this visit
  • You can add more tests later from the edit page
  • The record will be saved as "Draft" until you mark it as completed
  • All selected tests must be filled before marking as completed
@endsection