@extends('web.layouts.front')
@section('title')
{{ __('messages.appointments') }}
@endsection
@section('page_css')
{{-- --}}
@endsection
@section('content')
@php
$settingValue = getSettingValue();
@endphp
@include('flash::message')
{{-- {{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('webDoctorChargeUrl', url('web-doctors-appointment-charge'), ['class' => 'webDoctorChargeUrl']) }}
{{ Form::hidden('appointmentSaveUrl', route('web.appointments.store'), ['id' => 'homeAppointmentSaveUrl', 'class' => 'homeAppointmentsSaveUrl']) }}
{{ Form::hidden('webAppointmentRazorpay', route('web.appointment.razorpay.init'), ['id' => 'webAppointmentRazorpayInit', 'class' => 'webAppointmentRazorpayInit']) }}
{{ Form::hidden('webAppointmentPaypal', route('web.appointment.paypal.init'), ['id' => 'webAppointmentPaypal', 'class' => 'webAppointmentPaypal']) }}
{{ 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']) }}
{{ Form::hidden('webAppointmentIndexPage', route('appointment'), ['class' => 'webAppointmentIndexPage']) }}
{{ Form::hidden('backUrl', route('appointment'), ['class' => 'backUrl']) }}
@endsection
@section('page_scripts')
{{-- --}}
{{-- --}}
{{-- --}}
@endsection
@section('scripts')
@endsection