@extends('app') @section('extra-css') @endsection @section('content-header') Add Doctor Home HR Add Doctor @endsection @section('content') @can('doctor-view') View Doctor @endcan @can('doctor-create') {{csrf_field()}} Step 1 Basic Information Step 2 Doctor 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 gender','placeholder'=> 'Please Select Gender']) !!} Profile Image: Doctor Signature: Designation: {!! Form::select('designation', $designations ,null, ['class'=> 'form-control designation', 'placeholder'=> 'Please Select Designation']) !!} Department: {!! Form::select('department', $departments ,null, ['class'=> 'form-control','placeholder'=> 'Please Select Department']) !!} Educational Qualification: {!! Form::select('educational_qualification', $educational_qualifications ,null, ['class'=> 'form-control educational_qualification', 'placeholder'=> 'Please Select Designation']) !!} Medical Degree: {!! Form::select('medical_degree[]', $medical_degrees ,null, ['class'=> 'form-control select2', 'multiple']) !!} Specialist: {{old('speciality')}} Allow Prescription Fees Prescription Fee: Received By Hospital With Appointment Received By Doctor With Appointment Doctor Commission Percentage Commission Commission Fee: Email: Password: Confirm Password: @endcan @endsection @section('extra-js') @endsection @section('script') @endsection