@extends('layouts.app') @section('body-class', 'page-checkout') @section('content') @push('header') @endpush @hookinsert('checkout.top')
{{ __('front/checkout.shipping_address') }}
{{ __('front/checkout.create_address') }}
@{{ address.name }} @{{ address.phone }} @{{ address.zipcode }}
@{{ address.address_1 }} @{{ address.address_2 }} @{{ address.city }} @{{ address.state }} @{{ address.country_name }}
{{ __('front/common.edit') }}
{{ __('front/checkout.billing_address') }}
{{ __('front/checkout.create_address') }} {{ __('front/checkout.cancel_create') }}
@{{ address.name }} @{{ address.phone }} @{{ address.zipcode }}
@{{ address.address_1 }} @{{ address.address_2 }} @{{ address.state }} @{{ address.city }} @{{ address.country_id }}
{{ __('front/common.edit') }}
{{ __('front/checkout.create_address') }}
@if (!current_customer()) {{ __('front/common.login') }} @endif {{ __('front/checkout.cancel_create') }}
@include('shared.address-form')
{{ __('front/checkout.shipping_methods') }}
@{{ quote.name }}    @{{ quote.cost_format }}
{{ __('front/checkout.no_shipping_methods') }}
{{ __('front/checkout.billing_methods') }}
@{{ item.name }}
{{ __('front/checkout.no_billing_methods') }}
{{ __('front/checkout.order_comment') }}
{{ __('front/checkout.my_order') }}
{{ __('front/cart.product') }}{{ __('front/cart.price') }}
@foreach ($cart_list as $product)
{{ $product['product_name'] }}
{{ $product['sku_code'] }} @if ($product['variant_label']) - {{ $product['variant_label'] }} @endif x {{ $product['quantity'] }}
{{ $product['price_format'] }}
@endforeach
  • @{{ fee.title }} @{{ fee.total_format }}
  • {{ __('front/cart.total') }}@{{ source.totalAmount }}
@hookinsert('checkout.confirm.before')
@hookinsert('checkout.bottom') @endsection @push('footer') @endpush