{{ 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 patient-in-report-id','required','id' => 'patientId','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 doctor-in-report-id','required','id' => 'doctorId','placeholder'=> __('messages.web_home.select_doctor'),'data-control' => 'select2']) }}
@endif
{{ Form::label('date', __('messages.investigation_report.date').(':'), ['class' => 'form-label']) }}
{{ Form::text('date', null, ['class' => 'form-control bg-white','id' => 'date','required','autocomplete' => 'off']) }}
{{ Form::label('status', __('messages.common.status').(':'), ['class' => 'form-label']) }}
{{ Form::select('status', $status, null, ['id' => 'status','class' => 'form-select status-in-report','required','data-control' => 'select2']) }}
{{ Form::label('description', __('messages.investigation_report.description').(':'), ['class' => 'form-label']) }}
{{ Form::textarea('description', null, ['class' => 'form-control']) }}