@extends("Layout::app") @section('head') @endsection @section('content')

{{__('Checkout')}}

@if(\Modules\Order\Helpers\CartManager::count())
@include ('Order::frontend.checkout.billing')
@include ('Order::frontend.checkout.review')
@include ('Order::frontend.checkout.payment')
@php $term_conditions = setting_item('booking_term_conditions'); @endphp
@if(setting_item("booking_enable_recaptcha"))
{{recaptcha_field('booking')}}
@endif

@else
{{__("Your cart is empty!")}}
@endif
@endsection @section('footer') @endsection