@extends('layouts.landing', ['title' => 'Checkout v.1 - Delivery Info Step 1']) @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 }}, {{ $address->city_name }}, {{ $address->province_name }} {{ $address->postal_code }} @if ($address->is_primary) {{ __('checkout.primary') }} @endif @endforeach @endif {{ __('checkout.shipping_address') }} {{ __('checkout.first_name') }} {{ __('checkout.last_name') }} {{ __('checkout.address') }} {{ __('checkout.city') }} {{ __('checkout.state') }} {{ __('checkout.zip') }} {{ __('checkout.phone') }} {{ $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/footer') @endsection @section('scripts') @endsection
{{ __('checkout.choose_delivery_method') }}