@extends('frontend.layouts.app') @section('title', __('Edit Parcel')) @section('content')
Parcel Details
  • Tracking No.

  • Date Created {{ $parcel->created_at }}

  • Recipient Name (On Parcel)

  • Recipient Phone Number


{{ __('Item Information') }}
@foreach($categories as $category)
id, array_keys($parcel->cat)) ? 'checked' : '' }}> {{ $category->title }}
@endforeach @error('category') {{ $message }} @enderror
  • Item Description (Keterangan barang)

    Max:1000 characters | *Simple description of every items, quantity & price, example: Shirt 2pcs RM10. (Keterangan ringkas setiap barang, contoh: Baju 2pcs RM10)
    @error('description') {{ $message }} @enderror
  • Destination @foreach($drop_points as $drop_point)

    office_id == $drop_point->id ? "checked" : "" }}> {{ $drop_point->code." - ".$drop_point->name }}
    @endforeach

  • Quantity

  • Price

@endsection