@extends('layouts.dashboard') @section('title', 'Edit Trip - PangoQ') @section('content')
Back to Trip Details

Edit Trip

Update your travel plans and preferences

{{ $trip->title }}

{{ $trip->destination }} • {{ $trip->date_range }}

@csrf @method('PUT')

Basic Information

@error('title')

{{ $message }}

@enderror
@error('destination')

{{ $message }}

@enderror
@error('status')

{{ $message }}

@enderror

Travel Details

@error('start_date')

{{ $message }}

@enderror
@error('end_date')

{{ $message }}

@enderror
$

Current budget: ${{ number_format($trip->budget ?? 0, 2) }}

@if($trip->total_cost)

Trip total cost: ${{ number_format($trip->total_cost, 2) }}

@endif

Budget can only be increased to accommodate additional expenses or inflation

@error('budget')

{{ $message }}

@enderror

Description & Notes

@error('description')

{{ $message }}

@enderror
Cancel Changes

Need Help?

You can update your trip details at any time. Changes to dates might affect your savings goal timeline. If you need to add or remove travelers, you can do that from the trip details page.

@endsection