{{ __('frontend.complete_your_tour_booking') }}

{{ __('frontend.fill_details_to_secure') }}

{{ $tour->title }}

{{ __('frontend.passenger_information') }}

{{ __('frontend.provide_passenger_details') }}

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session('error'))
{{ session('error') }}
@endif @if (session('success'))
{{ session('success') }}
@endif
@csrf

{{ __('frontend.passenger_details') }}

{{ __('frontend.contact_information') }}

{{ __('frontend.use_info_for_confirmations') }}

{{ __('frontend.info_secure_note') }}

{{ __('frontend.tour_summary') }}

{{ $tour->title }}

@if($tour->extra_field_1 && $tour->extra_field_2)
{{ date('d M Y', strtotime($tour->extra_field_1)) }} - {{ date('d M Y', strtotime($tour->extra_field_2)) }}
@endif @if($tour->extra_field_3)
{{ $tour->extra_field_3 }} {{ __('frontend.days') }}
@endif
{{ __('frontend.passenger_breakdown') }}
{{ __('frontend.adults') }} {{ $adults }}x @if($tour->extra_field_8) {{ \App\Helpers\CurrencyHelper::formatPrice($tour->extra_field_8) }} @endif
{{ __('frontend.children') }} {{ $children }}x @if($tour->extra_field_9) {{ \App\Helpers\CurrencyHelper::formatPrice($tour->extra_field_9) }} @endif
{{ __('frontend.total_amount') }} @if($tour->extra_field_8) {{ \App\Helpers\CurrencyHelper::formatPrice($tour->extra_field_8 * $adults + ($tour->extra_field_9 ?? 0) * $children) }} @else {{ __('frontend.contact_for_price') }} @endif

{{ __('frontend.prices_include_taxes') }}

@push('js') @endpush