@extends('layouts.branch') @section('title', "Modify Visit Record") @section('header', "Modify Visit Record") @section('content')
@include('partials.branch._breadcrumbs', [ 'breadcrumbs' => [ ['name' => 'Registration Directory', 'url' => route('branch.patients.index')], ['name' => "OPD Check-in Log", 'url' => route('branch.registrations.index')], ['name' => "Edit Record: " . $opdRegistration->opd_number, 'url' => '#'] ] ])
@if($opdRegistration->patient?->photo_path) @else {{ substr($opdRegistration->full_name, 0, 1) }} @endif

{{ $opdRegistration->full_name }}

{{ $opdRegistration->opd_number }}

Master UHID: {{ $opdRegistration->uhid }}

Registration Date

{{ $opdRegistration->visit_date->format('d M, Y') }}

@if($errors->any())
Correction Required

The following issues prevented saving the record

    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')

Visit Schedule

Correct visit timing if processed retrospectively

Contact & Reach

Verify mobile and emergency linkage

Clinical Vitals

Correct medical snapshots or chief complaints

Financial Overview

Base Fee

Final Payable

Administrative Audit

Modifying this record will be logged in the system audit trail. Ensure all financial corrections match the physical day-sheet.

@push('scripts') @endpush @endsection