{{ 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' => 'editInvestigationPatientId','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' => 'editInvestigationDoctorId','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' => 'editInvestigationDate','required','autocomplete' => 'off']) }}
{{ Form::label('image',__('messages.common.profile').(':'), ['class' => 'form-label']) }}
{{ Form::label('status', __('messages.common.status').(':'), ['class' => 'form-label']) }} {{ Form::select('status', $status, null, ['id' => 'editInvestigationStatus','class' => 'form-select','required','data-control' => 'select2']) }}
{{ Form::label('description', __('messages.investigation_report.description').(':'), ['class' => 'form-label']) }} {{ Form::textarea('description', null, ['class' => 'form-control col-sm-6 d-flex flex-column mb-md-10 mb-5']) }}
{{ Form::submit(__('messages.common.save'), ['class' => 'btn btn-primary me-2']) }} {{ __('messages.common.cancel') }}