@extends('layouts.app') @section('title', 'Edit Reservation') @section('page_title', $reservation->booking_no) @section('page_subtitle', 'Edit reservation for ' . $reservation->guest_name) @section('nav_reservations', 'bg-teal-50 text-teal-700 font-semibold') @section('content')
Back to Reservation @if ($errors->any())

Please fix the following:

@endif
@csrf @method('PATCH') {{-- ===== GUEST INFORMATION ===== --}}
1

Guest Information

{{-- ===== STAY DETAILS ===== --}}
2

Stay Details

Room {{ $reservation->room_no }} — {{ $reservation->room_type }} — ₱{{ number_format($reservation->rate, 0) }}/night

Nights

{{ $reservation->nights }}

Rate/Night

₱{{ number_format($reservation->rate, 0) }}

Revised Total

₱{{ number_format($reservation->amount, 0) }}

{{-- ===== BOOKING & NOTES ===== --}}
3

Booking Details

{{-- ===== DEPOSIT ===== --}}
4

Deposit & Payment

{{-- ACTIONS --}}

Booking # {{ $reservation->booking_no }} — Last updated {{ $reservation->updated_at->format('M j, Y g:i A') }}

Cancel
@endsection