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

Add Patient

@endsection @section('content')

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

@can('patient-create')
{{csrf_field()}}

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