@extends('admin.layouts.app') @section('content')

Edit Shipment

@csrf @method('PUT')

Basic Information

Tracking ID cannot be changed
@foreach($statusOptions as $option)

Package Information

@if($shipment->package_image)
Package
Current package image
@endif

Sender Information

Receiver Information

Tracking Timeline

@foreach($shipment->timeline as $index => $event)
@foreach($statusOptions as $option)
@endforeach

Alerts

@foreach($shipment->alerts ?? [] as $index => $alert)
@endforeach
Cancel
@push('scripts') @endpush @endsection