@extends('layouts.app') @section('title') {{ __('messages.appointment.new_appointment') }} @endsection @section('header_toolbar')

@yield('title')

{{ __('messages.common.back') }}
@endsection @section('content')
@include('layouts.errors')
{{ Form::hidden('doctorDepartmentUrl', url('doctors-list'), ['class' => 'doctorDepartmentUrl']) }} {{ Form::hidden('doctorChargeUrl', url('doctors-appointment-charge'), ['class' => 'doctorChargeUrl']) }} {{ Form::hidden('doctorScheduleList', url('doctor-schedule-list'), ['class' => 'doctorScheduleList']) }} {{ Form::hidden('appointmentSaveUrl', route('appointments.store'), ['id' => 'saveAppointmentURLID']) }} {{ Form::hidden('appointmentIndexPage', route('appointments.index'), ['class' => 'appointmentIndexPage']) }} {{ Form::hidden('isEdit', false, ['class' => 'isEdit']) }} {{ Form::hidden('isCreate', true, ['class' => 'isCreate']) }} {{ Form::hidden('getBookingSlot', route('get.booking.slot'), ['class' => 'getBookingSlot']) }}
{{ Form::open(['id' => 'creatAppointmentForm']) }} @include('appointments.fields') {{ Form::close() }}
@include('appointments.templates.appointment_slot')
@endsection @section('scripts') {{-- backend/js/moment-round/moment-round.js --}} {{-- assets/js/appointments/create-edit.js --}} @endsection