@extends('app') @section('extra-css') @endsection @section('content-header')

Edit Patient

@endsection @section('content')

@can('patient-view')   View Patient @endcan

@canany(['patient-edit','patient-update'])
{{csrf_field()}}

{!! Form::select('gender', [ '1'=>'Male', '2'=>'Female', '3'=>'Other', ] ,$patient->user->gender, ['class'=> 'form-control','placeholder'=> 'Please Select Gender']) !!}
@if(!empty($patient->user->profile_image)) @endif
{!! Form::select('blood_group', [ 'A+'=>'A+', 'B+'=>'B+', 'AB+'=>'AB+', 'AB-'=>'AB-', 'O+'=>'O+', 'O-'=>'O-', 'A-'=>'A-', 'B-'=>'B-', ] ,$patient->blood_group, ['class'=> 'form-control','placeholder'=> 'Please Select Patient Blood Group']) !!}
@endcanany
@endsection @section('extra-js') @endsection @section('script') @endsection