{{ __('messages.ipd_patient_charges.edit_charge') }}

{{ Form::open(['id'=>'editIpdChargesForm']) }} {{ Form::hidden('currency_symbol', getCurrentCurrency(), ['class' => 'currencySymbol']) }}
@if($ipdPatientDepartment->bill)
Note: After adding charge you must need to re-generate Bill.
@endif
{{ Form::hidden('id',null,['id'=>'ipdChargesId']) }}
{{ Form::label('date', __('messages.ipd_patient_charges.date').':',['class' => 'form-label']) }} {{ Form::text('date', null, ['class' => 'form-control modelDataPickerzindex','id' => 'ipdEditChargeDate','autocomplete' => 'off', 'required']) }}
{{ Form::label('charge_type_id', __('messages.ipd_patient_charges.charge_type_id').':',['class' => 'form-label']) }} {{ Form::select('charge_type_id', $chargeTypes, null, ['class' => 'form-select select2Selector', 'id' => 'editIpdChargeTypeId', 'required','placeholder'=>'Select Charge Type', 'data-is-charge-edit' => 1]) }}
{{ Form::label('charge_category_id', __('messages.ipd_patient_charges.charge_category_id').':',['class' => 'form-label']) }} {{ Form::select('charge_category_id', [null], null, ['class' => 'form-select select2Selector', 'id' => 'editIpdChargeCategoryId', 'required', 'disabled', 'data-is-charge-edit' => 1]) }}
{{ Form::label('charge_id', __('messages.ipd_patient_charges.charge_id').':',['class' => 'form-label']) }} {{ Form::select('charge_id', [null], null, ['class' => 'form-select select2Selector', 'id' => 'editIpdChargeId', 'required', 'disabled', 'data-is-charge-edit' => 1]) }}
{{ Form::label('standard_charge', __('messages.ipd_patient_charges.standard_charge').':',['class' => 'form-label']) }} {{ Form::text('standard_charge', null, ['class' => 'form-control price-input','id' => 'editIpdStandardCharge', 'readonly']) }}
{{ Form::label('applied_charge', __('messages.ipd_patient_charges.applied_charge').':',['class' => 'form-label']) }} () {{ Form::text('applied_charge', null, ['class' => 'form-control price-input','id' => 'editIpdAppliedCharge', 'required']) }}
{{ Form::button(__('messages.common.save'), ['type'=>'submit','class' => 'btn btn-primary me-3','id'=>'btnEditCharges','data-loading-text'=>" Processing..."]) }}
{{ Form::close() }}