{{ __('Process Authorization Request') }}

{{ $request->listing_title }}

Tracking/Shipment: {{ $request->shipment_tracking_number }}
AWB: {{ $request->awb_number ?? '—' }}
Condition: {{ $request->listing_condition }}
Description:

{{ $request->listing_description }}

@if ($request->seller_images_urls && count($request->seller_images_urls) > 0)

Seller Images

@foreach ($request->seller_images_urls as $imageUrl)
Seller image
@endforeach
@endif
@csrf @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @php $imageAspects = [ 'front' => 'Front', 'right' => 'Right', 'back' => 'Back', 'left' => 'Left', 'top' => 'Top', ]; @endphp

Capture Images (5 required)

Use the camera for each required image. Preview and upload progress will appear after capture.

@foreach ($imageAspects as $aspectKey => $aspectLabel)

{{ $aspectLabel }} View

Required

@endforeach

Capture Video (1 required)

Use the camera to record the required video. Preview and upload progress will appear after capture.

Required

Mobile opens the device camera. Desktop opens the webcam when supported; otherwise the normal file picker opens.

Cancel Submit Authorization
@vite(['resources/js/webcam-capture.js'])