{{ Form::label('title', __('messages.investigation_report.title').(':'), ['class' => 'form-label fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::text('title', null, ['class' => 'form-control form-control-solid','required']) }}
{{ Form::label('patient_id', __('messages.investigation_report.patient').(':'), ['class' => 'form-label fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::select('patient_id',$patients, null, ['class' => 'form-select form-select-solid','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 fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::select('doctor_id',$doctors, null, ['class' => 'form-select form-select-solid','required','id' => 'doctorId','placeholder'=>'Select Doctor','data-control' => 'select2']) }}
@endif
{{ Form::label('date', __('messages.investigation_report.date').(':'), ['class' => 'form-label fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::text('date', null, ['class' => 'form-control form-control-solid','id' => 'date','required','autocomplete' => 'off']) }}
{{ Form::label('attachment', __('messages.investigation_report.attachment').(':'), ['class' => 'fs-5 fw-bold mb-2 d-block']) }}
{{ Form::label('status', __('messages.common.status').(':'), ['class' => 'form-label fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::select('status', $status, null, ['id' => 'status','class' => 'form-select form-select-solid','required','data-control' => 'select2']) }}
{{ Form::label('description', __('messages.investigation_report.description').(':'), ['class' => 'form-label fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::textarea('description', null, ['class' => 'form-control form-control-solid']) }}
{{ Form::submit(__('messages.common.save'), ['class' => 'btn btn-primary me-3']) }} {{ __('messages.common.cancel') }}