@extends('app') @section('extra-css') @endsection @section('content-header') Edit Patient Home Outdoor Edit Patient @endsection @section('content') @can('patient-view') View Patient @endcan @canany(['patient-edit','patient-update']) {{csrf_field()}} Step 1 Basic Information Step 2 Patient Profile Full Name: User Name: Father's Name: Mother's Name: Mobile No: DOB: Gender: {!! Form::select('gender', [ '1'=>'Male', '2'=>'Female', '3'=>'Other', ] ,$patient->user->gender, ['class'=> 'form-control','placeholder'=> 'Please Select Gender']) !!} Profile Image: @if(!empty($patient->user->profile_image)) @endif Blood Group: {!! 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