@extends('layouts.admin') @section('title', 'Edit Shipment') @section('content')
{{-- ================= PAGE HEADER ================= --}}

Edit Shipment

Tracking #: {{ $shipment->tracking_number }} {{ ucfirst($shipment->customer->customer_type) }} Rate — £{{ number_format($ratePerKg, 2) }} / KG
← Back
{{-- ================= REWARD LOCK NOTICE ================= --}} @if($shipment->reward_locked)

Reward Points Applied

{{ number_format($shipment->free_weight_applied, 2) }} KG is locked and cannot be reduced.

@endif {{-- ================= FORM ================= --}}

Shipment Details

Update shipment information & pricing

@csrf @method('PUT')
{{-- ================= DYNAMIC PRICING SCRIPT ================= --}} @endsection