@extends('storefront.layout') @section('title', 'Parcel Details - '.config('app.name', 'FreshMart')) @section('body_class', 'sf-no-bottom-nav') @section('content') @include('services.parcel._flow-style') @php $draft = $draft ?? []; $parcelStep = 'details'; $categories = ['Documents', 'Grocery', 'Electronics', 'Clothes', 'Medicines', 'Gifts', 'Small Packages', 'Others']; $bands = [ '0-2' => ['label' => '0-2 kg', 'weight' => 1], '2-5' => ['label' => '2-5 kg', 'weight' => 3], '5-10' => ['label' => '5-10 kg', 'weight' => 7], '10-20' => ['label' => '10-20 kg', 'weight' => 15], ]; $selectedBand = old('weight_band', $draft['weight_band'] ?? '0-2'); $selectedCategory = old('package_type', $draft['package_type'] ?? 'Documents'); @endphp
Step 3

Parcel Details

Select what you are sending, weight band and special care instructions.

@include('services.parcel._flow-steps', ['parcelStep' => $parcelStep]) @if(session('error'))
{{ session('error') }}
@endif @if($errors->any())
{{ $errors->first() }}
@endif
@csrf

What are you sending?

Normal parcel delivery only. Vehicle selection is not required.

Care Options

Fragile instructions are sent to the driver after acceptance.

Back
@endsection