@extends('web.layouts.front')
@section('title')
{{ __('messages.appointments') }}
@endsection
@section('page_css')
{{-- --}}
@endsection
@section('content')
@php
$settingValue = getSettingValue();
@endphp
{{-- {{Form::hidden('userCurrentLanguage',checkLanguageSession(),['class'=>'userCurrentLanguage'])}}--}}
{{ Form::open(['id' => 'webAppointmentFormSubmit','class'=>'appointment-form']) }}
@csrf
@include('web.home.appointment_fields')
{{ Form::close() }}
@include('appointments.templates.appointment_slot')
{{Form::hidden('doctorDepartmentUrl',route('appointment.doctor.list'),['id'=>'homeDoctorDepartmentUrl','class'=>'homeDoctorDepartmentUrl'])}}
{{Form::hidden('doctorUrl',route('appointment.doctors.list'),['id'=>'homeDoctorUrl','class'=>'homeDoctorUrl'])}}
{{Form::hidden('appointmentSaveUrl',route('web.appointments.store'),['id'=>'homeAppointmentSaveUrl','class'=>'homeAppointmentsSaveUrl'])}}
{{Form::hidden('doctorScheduleList',url('appointment-doctor-schedule-list'),['id'=>'homeDoctorScheduleList','class'=>'homeDoctorScheduleList'])}}
{{Form::hidden('isEdit',false,['id'=>'homeIsEdit','class'=>'isEdit'])}}
{{Form::hidden('isCreate',true,['id'=>'homeIsCreate','class'=>'isCreate'])}}
{{Form::hidden('getBookingSlot',route('appointment.get.booking.slot'),['id'=>'homeGetBookingSlot','class'=>'homeGetBookingSlot'])}}
@endsection
@section('page_scripts')
{{-- --}}
{{-- --}}
{{-- --}}
{{-- --}}
@endsection