@extends('layouts.front') @push('styles') @endpush @section('content')

@lang('front.headings.checkout')

@if(is_null($user))

@lang('front.accountAlready') ? @lang('front.loginNow')

@endif
@if(is_null($user))
@lang('app.add') @lang('front.personalDetails')
@csrf
first name*
last name*
email*
phone number*
@if ($smsSettings->nexmo_status == 'active') @lang('messages.info.verifyMessage') @endif

** @lang('front.accountCreateNotice')

@elseif($smsSettings->nexmo_status == 'active' && !$user->mobile_verified)
@lang('app.verifyMobile')
@include('partials.front_verify_phone')
@endif
@lang('front.summary.checkout.heading.bookingSummary')
  • @lang('front.bookingDate'): {{ \Carbon\Carbon::createFromFormat('m/d/Y', $bookingDetails['bookingDate'])->format('l, F jS') }}
  • @lang('front.bookingTime'): {{ \Carbon\Carbon::createFromFormat('H:i:s', $bookingDetails['bookingTime'])->format($settings->time_format) }}
  • @lang('front.amountToPay'): {{ $settings->currency->currency_symbol.$totalAmount }}
@if ($user)
@lang('front.additionalNotes')
@csrf
@elseif ($smsSettings->nexmo_status == 'deactive')
@lang('front.additionalNotes')
@endif
@endsection @push('footer-script') @endpush