@include('admin.header')

Edit Shipment

Back to Shipments
@if(session('success')) @endif @if($errors->any()) @endif
Edit Shipment Details
@csrf @method('PUT')
Cancel
Shipment Info
Shipment Number:
{{ $shipment->shipment_number }}
Total Cartons:
{{ $shipment->total_cartons }}
Total Quantity:
{{ number_format($shipment->total_quantity) }}
Created By:
{{ $shipment->creator->name }}
{{ $shipment->created_at->format('M d, Y H:i') }}
Last Updated:
{{ $shipment->updated_at->format('M d, Y H:i') }}
@include('admin.footer')