@extends('app') @section('extra-css') @endsection @section('content-header') Add Scheduler Home Outdoor Add Doctor Appointment @endsection @section('content') View Doctor Appointment @isset($appointment) @include('common.confirmed-message') @endisset {{csrf_field()}} Doctor List Select Department: {!! Form::select('department_id', $departments ,null, ['class'=> 'form-control', 'id'=>'department_id', 'required', 'placeholder'=> 'Please Select Department']) !!} Select Doctor: {!! Form::select('user_id', $doctors ,null, ['class'=> 'form-control', 'required', 'placeholder'=> 'Please Select Doctor', 'id'=>'user_id']) !!} Patient Name: Select Gender: {{ Form::label("Male", null, ['class' => 'control-label']) }} {{Form::radio('gender', '1', true)}} {{ Form::label("Female", null, ['class' => 'control-label']) }} {{Form::radio('gender', '2')}} Patient Age: Phone Number: @endsection @section('extra-js') @endsection @section('script')