@extends('storefront.layout') @section('title', 'Pickup Location - '.config('app.name', 'FreshMart')) @section('body_class', 'sf-no-bottom-nav') @section('content') @include('services.parcel._flow-style') @php $draft = $draft ?? []; $parcelStep = 'pickup'; @endphp
Step 1

Pickup Address

Search, detect your location, or move the map pin to set the pickup point.

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

Pickup Location

Google suggestions fill the full address, city and map pin automatically.

@if(($addresses ?? collect())->isNotEmpty())
@endif
Cancel
@include('services.parcel._places-script') @endsection