@csrf
{{-- Main form --}}
{{-- Guests section - Multiple guests --}}
{{ __('hotel::modules.reservation.guestDetails') }}
@if(isset($guests[0]['id_proof_file']) && is_object($guests[0]['id_proof_file']))

{{ $guests[0]['id_proof_file']->getClientOriginalName() }}

@endif
{{-- Stay details --}}
{{ __('hotel::modules.checkIn.stayDetails') }}
@foreach($ratePlans as $plan) @endforeach
{{-- Travel info --}}
{{ __('hotel::modules.reservation.travelInfo') }}
{{-- Pricing Period / Recurring --}} @if(count($availableRooms) > 0)
{{ __('hotel::modules.reservation.pricingPeriod') }}
@foreach($pricingTypeOptions as $option) @endforeach

{{ __('hotel::modules.reservation.note') }}: {{ __('hotel::modules.reservation.pricingPeriodNote') }}

@endif {{-- Rooms --}} @if(count($availableRooms) > 0)
{{ __('hotel::modules.reservation.selectRooms') }}
@foreach($availableRooms as $roomTypeId => $roomData)
{{ $roomData['room_type_name'] }}
{{ __('hotel::modules.reservation.available') }}: {{ $roomData['available'] }} | {{ __('hotel::modules.reservation.rate') }}: {{ currency_format($roomData['rate']) }}/{{ __('hotel::modules.reservation.night') }}
@endforeach
@else

{{ __('hotel::modules.reservation.selectDatesMessage') }}

@endif {{-- Extras --}} @if(count($extraServices) > 0)
{{ __('hotel::modules.reservation.extras') }}
@foreach($extraServices as $extra)
{{ $extra->name }}
{{ currency_format($extra->price) }}
@endforeach
@endif
{{-- Sidebar - Pricing summary --}}
{{ __('hotel::modules.reservation.bookingSummary') }}
{{ __('hotel::modules.reservation.roomsPrice') }} {{ currency_format($roomsTotal) }}
@if($extrasTotal > 0)
{{ __('hotel::modules.reservation.extrasPrice') }} {{ currency_format($extrasTotal) }}
@endif
{{ __('hotel::modules.reservation.subtotal') }} {{ currency_format($subTotal) }}
{{ __('hotel::modules.reservation.discount') }}
@if($apply_discount)
@endif @if($apply_discount && $discount_value > 0)
{{ __('hotel::modules.reservation.discountAmount') }} - {{ currency_format($discountAmount) }}
{{ __('hotel::modules.reservation.amountAfterDiscount') }} {{ currency_format($amountAfterDiscount) }}
@endif
@foreach($taxes as $tax) @endforeach
@if(!empty($tax_ids))
{{ __('hotel::modules.reservation.taxAmount') }} {{ currency_format($taxAmount) }}
@endif
{{ __('hotel::modules.reservation.total') }} {{ currency_format($totalAmount) }}
@if((float) $advance_paid > 0 || (float) $security_deposit > 0)
@endif
{{ __('hotel::modules.reservation.remainingAtCheckout') }} {{ currency_format($remainingBalance) }}
@foreach($statuses as $s) @endforeach
{{ __('hotel::modules.reservation.createReservation') }} {{ __('app.cancel') }}