@extends('layouts.landing', ['title' => 'Checkout']) @section('content') {{-- show error message --}} @if (session('error')) {{ session('error') }} @endif 1 {{ __('checkout.delivery_method') }} {{ __('checkout.choose_delivery_method') }} {{ __('checkout.delivery') }} {{ __('checkout.delivery_description') }} {{ __('checkout.store_pickup') }} {{ __('checkout.pickup_not_available') }} {{-- dropdown address --}} @if ($address_list->count() > 0) {{ __('checkout.select_saved_address') }} @foreach ($address_list as $key => $address) is_primary || $key === 0 ? 'selected' : '' }}> {{ $address->label }} - {{ $address->name }}, {{ $address->address }} @if ($address->is_primary) ({{ __('checkout.primary') }}) @endif @endforeach @endif {{ __('checkout.shipping_address') }} Edit {{ __('checkout.first_name') }} {{-- {{ __('checkout.last_name') }} --}} {{ __('checkout.phone') }} {{ __('checkout.address') }} {{ __('checkout.city') }} {{ __('checkout.state') }} {{ __('checkout.zip') }} Latitude Longitude {{ $store->display_name }} {{ __('checkout.store_address') }}: {{ $store->address }} {{ __('checkout.phone') }}: {{ $store->phone }} {{ __('checkout.hours') }}: {{ $store->hours }} @csrf {{ __('checkout.continue_to_shipping') }} 2 {{ __('checkout.choose_shipping') }} 3 {{ __('checkout.payment') }} @include('layouts.partials/footer2') @endsection @section('scripts') @endsection
{{ __('checkout.choose_delivery_method') }}