@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
@lang('front.registration.firstName') *
@lang('front.registration.lastName') *
@lang('front.registration.email') *
@lang('front.registration.phoneNumber') *
@if ($smsSettings->nexmo_status == 'active') @lang('messages.info.verifyMessage') @endif
Create an account

You must create a password now so that you can reschedule or cancel an appointment in future.

@lang('front.registration.password') *
Confirm Password *
{{--

** @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')
@if ($request_type=='booking')
  • @lang('app.service'): @php $products = json_decode(Cookie::get('products'), true); @endphp @foreach ($products as $product) {{ $product['serviceName'] }} @endforeach
  • @lang('front.bookingDate'): {{ \Carbon\Carbon::createFromFormat('Y-m-d', $bookingDetails['bookingDate'])->isoFormat('dddd, MMMM Do') }}
  • @lang('front.bookingTime'): {{ \Carbon\Carbon::createFromFormat('H:i:s', $bookingDetails['bookingTime'])->format($settings->time_format) }}
  • @if($location_name != '')
  • @lang('app.center'): {!! $location_name !!}
  • @endif
@else
  • @lang('app.deal') @lang('app.name'): {{$deal->dealName}}
  • @lang('app.quantity'): {{ $deal->dealQuantity }}
  • @lang('front.amountToPay'): {{ $settings->currency->currency_symbol.$deal->dealPrice*$deal->dealQuantity }}
@endif
@if ($user)
{{--
@lang('front.additionalNotes')
--}}
@csrf
@elseif ($smsSettings->nexmo_status == 'deactive')
{{--
@lang('front.additionalNotes')
--}}
@endif
@endsection @push('footer-script') @endpush