@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') }}
@{{ 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') }}
{{ __('front/checkout.please_create_address') }}
@{{ 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') }}
@hookinsert('checkout.products.before') @if (!empty($cart_list))
{{ __('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 @if ($product['item_type_label']) {{ $product['item_type_label'] }} @endif x {{ $product['quantity'] }}
@if (!empty($product['options']))
@foreach ($product['options'] as $option)
{{ $option['option_name'] }}: {{ $option['option_value_name'] }} @if ($option['price_adjustment'] != 0) ({{ $option['price_adjustment'] > 0 ? '+' : '' }}{{ currency_format($option['price_adjustment']) }}) @endif
@endforeach
@endif
{{ $product['price_format'] }}
@endforeach
@endif @hookinsert('checkout.products.after')
@if (current_customer())
{{ default_currency()->symbol_left }}
{{ __('front/transaction.available_balance') }}: @{{ source.balanceAmountFormat }} {{ __('front/transaction.input_should_balance') }} {{ __('front/transaction.input_balance_total') }}
@endif
  • @{{ fee.title }} @{{ fee.total_format }}
  • {{ __('front/cart.total') }}@{{ source.totalAmountFormat }}
@hookinsert('checkout.confirm.before')
@hookinsert('checkout.bottom') @endsection @push('footer') @endpush