@extends('app') @section('extra-css') @endsection @section('content-header') Add Patient Home Outdoor Add Patient @endsection @section('content') @can('patient-view') View Patient @endcan @can('patient-create') {{csrf_field()}} Step 1 Basic Information Step 2 Patient Profile Step 3 Login Information Full Name: User Name: Father's Name: Mother's Name: Mobile No: DOB: Gender: {!! Form::select('gender', [ '1'=>'Male', '2'=>'Female', '3'=>'Other', ] ,null, ['class'=> 'form-control','placeholder'=> 'Please Select Gender']) !!} Profile Image: Blood Group: {!! 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']) !!} Email: Password: Confirm Password: @endcan @endsection @section('extra-js') @endsection @section('script') @endsection