@extends('layouts.app') @section('title', 'Edit Passenger') @section('content')

Edit Passenger: {{ trim($passenger->first_name . ' ' . $passenger->last_name) }}

Invoice: {{ $passenger->booking?->invoice?->id ?? '-' }}

@if(session('error'))
{{ session('error') }}
@endif

Basic Information

Calculating...

Auto-filled based on date of birth

Auto-filled based on date of birth & stay duration

Service Information

Travel Details

Location

Documents

Click to upload documents

PDF, JPG, PNG

@forelse($passenger->documents as $doc)
{{ $doc->display_name }}
@empty

No documents uploaded

@endforelse
Cancel
{{-- Custom Duration Modal --}}

Customize Stay Duration

@push('scripts') @endpush @endsection