{{ Form::label('title', __('messages.investigation_report.title').(':'), ['class' => 'form-label']) }}
{{ Form::text('title', null, ['class' => 'form-control','required']) }}
{{ Form::label('patient_id', __('messages.investigation_report.patient').(':'), ['class' => 'form-label']) }}
{{ Form::select('patient_id',$patients, null, ['class' => 'form-select','required','id' => 'investigationPatientId','placeholder'=>'Select Patient','data-control' => 'select2']) }}
@if(Auth::user()->hasRole('Doctor'))
@else
{{ Form::label('doctor_id', __('messages.investigation_report.doctor').(':'), ['class' => 'form-label']) }}
{{ Form::select('doctor_id',$doctors, null, ['class' => 'form-select','required','id' => 'investigationDoctorId','placeholder'=>'Select Doctor','data-control' => 'select2']) }}
@endif
{{ Form::label('date', __('messages.investigation_report.date').(':'), ['class' => 'form-label']) }}
{{ Form::text('date', null, ['class' => (getLoggedInUser()->thememode ? 'bg-light form-control' : 'bg-white form-control'),'id' => 'investigationDate','required','autocomplete' => 'off']) }}
{{ Form::label('status', __('messages.common.status').(':'), ['class' => 'form-label']) }}
{{ Form::select('status', $status, null, ['id' => 'investigationStatus','class' => 'form-select','required','data-control' => 'select2']) }}
{{ Form::label('description', __('messages.investigation_report.description').(':'), ['class' => 'form-label']) }}
{{ Form::textarea('description', null, ['class' => 'form-control']) }}
{{ Form::submit(__('messages.common.save'), ['class' => 'btn btn-primary me-2']) }}
{{ __('messages.common.cancel') }}