{{ Form::label('patient_id',__('messages.ipd_patient.patient_id').':', ['class' => 'form-label fs-6 fw-bolder text-gray-700 mb-3']) }} * {{ Form::select('patient_id', $data['patients'], null, ['class' => 'form-select form-select-solid fw-bold', 'required', 'id' => 'patientId', 'placeholder' => 'Select Patient', 'tabindex' => '1', 'data-control' => 'select2']) }}
{{ Form::label('case_id', __('messages.ipd_patient.case_id').':', ['class' => 'form-label fs-6 fw-bolder text-gray-700 mb-3']) }} * {{ Form::select('case_id', [null], null, ['class' => 'form-select form-select-solid fw-bold', 'required', 'id' => 'caseId', 'disabled', 'data-control' => 'select2', 'placeholder' => 'Choose Case']) }}
{{ Form::label('ipd_number', __('messages.ipd_patient.ipd_number').':', ['class' => 'form-label fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::text('ipd_number', $data['ipdNumber'], ['class' => 'form-control form-control-solid', 'readonly']) }}
{{ Form::label('height', __('messages.ipd_patient.height').':', ['class' => 'form-label fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::number('height', 0, ['class' => 'form-control floatNumber form-control-solid', 'max' => '7', 'step' => '.01', 'tabindex' => '2']) }}
{{ Form::label('weight', __('messages.ipd_patient.weight').':', ['class' => 'form-label fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::number('weight', 0, ['class' => 'form-control floatNumber form-control-solid', 'data-mask'=>'##0,00', 'max' => '200', 'step' => '.01', 'tabindex' => '3']) }}
{{ Form::label('bp', __('messages.ipd_patient.bp').':', ['class' => 'form-label fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::text('bp', null, ['class' => 'form-control form-control-solid', 'tabindex' => '4']) }}
{{ Form::label('admission_date', __('messages.ipd_patient.admission_date').':', ['class' => 'form-label fs-6 fw-bolder text-gray-700 mb-3']) }} * {{ Form::text('admission_date', null, ['class' => 'form-control form-control-solid','id' => 'admissionDate','autocomplete' => 'off', 'required', 'tabindex' => '5']) }}
{{ Form::label('doctor_id',__('messages.ipd_patient.doctor_id').':', ['class' => 'form-label fs-6 fw-bolder text-gray-700 mb-3']) }} * {{ Form::select('doctor_id', $data['doctors'], null, ['class' => 'form-select form-select-solid fw-bold', 'required', 'id' => 'doctorId', 'placeholder' => 'Select Doctor', 'data-control' => 'select2', 'tabindex' => '6']) }}
{{ Form::label('bed_type_id',__('messages.ipd_patient.bed_type_id').':', ['class' => 'form-label fs-6 fw-bolder text-gray-700 mb-3']) }} * {{ Form::select('bed_type_id', $data['bedTypes'], null, ['class' => 'form-select form-select-solid fw-bold', 'required', 'id' => 'bedTypeId', 'placeholder' => 'Select Bed Type', 'data-control' => 'select2', 'tabindex' => '7']) }}
{{ Form::label('bed_id',__('messages.ipd_patient.bed_id').':', ['class' => 'form-label fs-6 fw-bolder text-gray-700 mb-3']) }} * {{ Form::select('bed_id', [null], null, ['class' => 'form-select form-select-solid fw-bold', 'required', 'id' => 'bedId', 'disabled', 'data-control' => 'select2', 'placeholder' => 'Choose Bed']) }}
{{ Form::label('is_old_patient',__('messages.ipd_patient.is_old_patient').':', ['class' => 'form-label fs-6 fw-bolder text-gray-700 mb-3']) }}
{{ Form::label('symptoms',__('messages.ipd_patient.symptoms').':', ['class' => 'form-label fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::textarea('symptoms', null, ['class' => 'form-control form-control-solid', 'rows' => 4]) }}
{{ Form::label('notes',__('messages.ipd_patient.notes').':', ['class' => 'form-label fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::textarea('notes', null, ['class' => 'form-control form-control-solid', 'rows' => 4]) }}
{!! Form::submit(__('messages.common.save'), ['class' => 'btn btn-primary me-3','id' => 'btnSave']) !!} {!! __('messages.common.cancel') !!}