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

Add Doctor

@endsection @section('content')

@can('doctor-view')   View Doctor @endcan

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

{!! Form::select('gender', [ '1'=>'Male', '2'=>'Female', '3'=>'Other', ] ,null, ['class'=> 'form-control gender','placeholder'=> 'Please Select Gender']) !!}
{!! Form::select('designation', $designations ,null, ['class'=> 'form-control designation', 'placeholder'=> 'Please Select Designation']) !!}
{!! Form::select('department', $departments ,null, ['class'=> 'form-control','placeholder'=> 'Please Select Department']) !!}
{!! Form::select('educational_qualification', $educational_qualifications ,null, ['class'=> 'form-control educational_qualification', 'placeholder'=> 'Please Select Designation']) !!}
{!! Form::select('medical_degree[]', $medical_degrees ,null, ['class'=> 'form-control select2', 'multiple']) !!}
@endcan
@endsection @section('extra-js') @endsection @section('script') @endsection