@extends('freight-client.layouts.app') @section('title', $load->exists ? 'Edit Load' : 'Post a Load') @section('head') @endsection @section('content') @php $isEdit = $load->exists; @endphp

{{ $isEdit ? 'Edit Load ' . $load->reference_no : 'Post a New Load' }}

@csrf @if($isEdit) @method('PUT') @endif

Shipment Details

{{-- Equipment / Truck Type — icon-tile selector (same pattern as the reservation form) --}} @php $types = [ ['name' => 'Dry Van', 'icon' => 'fa-truck'], ['name' => 'Flatbed', 'icon' => 'fa-truck-pickup'], ['name' => 'Reefer', 'icon' => 'fa-snowflake'], ['name' => 'Step Deck', 'icon' => 'fa-layer-group'], ['name' => 'Box Truck', 'icon' => 'fa-truck-moving'], ['name' => 'Tanker', 'icon' => 'fa-gas-pump'], ['name' => 'Lowboy', 'icon' => 'fa-trailer'], ['name' => 'Hotshot', 'icon' => 'fa-bolt'], ['name' => 'Power Only', 'icon' => 'fa-truck-front'], ['name' => 'Other', 'icon' => 'fa-ellipsis'], ]; $selectedType = old('equipment_type', $load->equipment_type); @endphp
@foreach($types as $t) @endforeach

Pickup

{{-- City / State / Zip / coords captured silently from the Google address --}}

Drop-off

{{-- Route map + auto-computed distance (mirrors the reservation form's map) --}}

Route & Distance

Estimated Distance: Estimated Time:

Notes

@if($isEdit)
@endif
Cancel
@endsection @section('scripts') @endsection