@extends('app') @section('content')

Add Discharge

@can('diagnostic-test-view')   Discharge List @endcan

{{csrf_field()}}
{!! Form::select('doctor_id', $doctors ,$discharge->doctor_id??null, ['class'=> 'form-control select2','placeholder'=> 'Please Select Doctor']) !!}
{!! Form::select('duty_doctor_id', $doctors ,$discharge->duty_doctor_id??null, ['class'=> 'form-control select2','placeholder'=> 'Please Select Doctor']) !!}
{!! Form::select('duty_nurse_id', $nurses ,$discharge->duty_nurse_id??null, ['class'=> 'form-control select2','placeholder'=> 'Please Select Nurse']) !!}
{!! Form::select('patient_id', $patients ,$patientInfo->user_id??null, ['class'=> 'form-control select2','placeholder'=> 'Please Select Patient']) !!}
@isset($patientInfo)
{!! Form::select('blood_group', bloodGroups() ,$patientInfo->blood_group, ['class'=> 'form-control','placeholder'=> 'Please Select Blood Group']) !!}
@endisset
{!! Form::select('status', [ '0'=>'Not Released', '1'=>'Released', ] ,$discharge->status??0, ['class'=> 'form-control select2','placeholder'=> 'Please Select Doctor']) !!}
@endsection @section('script') @endsection