@extends('layouts.app') @section('title') {{ __('messages.opd_patient.edit_opd_patient') }} @endsection @section('header_toolbar')

@yield('title')

{{ __('messages.common.back') }}
@endsection @section('content')
@include('layouts.errors')
{{ Form::model($opdPatientDepartment, ['route' => ['opd.patient.update', $opdPatientDepartment->id], 'method' => 'patch', 'id' => 'editOpdPatientDepartmentForm']) }} {{Form::hidden('opdPatientCaseId',$opdPatientDepartment->case_id,['id'=>'editOPDPatientCaseId','class'=>'editOPDPatientCaseId'])}} {{Form::hidden('patientCasesUrl',route('patient.cases.list'),['id'=>'editOpdPatientCasesUrl','class'=>'opdPatientCasesUrl'])}} {{Form::hidden('doctorOpdChargeUrl',route('getDoctor.OPDcharge'),['id'=>'editDoctorOpdChargeUrl','class'=>'doctorOpdChargeUrl'])}} {{Form::hidden('isEdit',true,['class'=>'isEdit'])}} {{Form::hidden('lastVisit',false,['id'=>'editOpdLastVisit','class'=>'lastVisit'])}} @include('opd_patient_departments.edit_fields') {{ Form::close() }}
@endsection {{--let patientCasesUrl = "{{ route('patient.cases.list') }}";--}} {{--let doctorOpdChargeUrl = "{{ route('getDoctor.OPDcharge') }}";--}} {{--let isEdit = true;--}} {{--let lastVisit = false;--}} {{-- --}} {{-- --}}