¨4.0.1¨
This commit is contained in:
@@ -3,35 +3,36 @@
|
||||
@section('title', trans('storefront::checkout.checkout'))
|
||||
|
||||
@section('content')
|
||||
<checkout-create customer-email="{{ auth()->user()->email ?? null }}"
|
||||
customer-phone="{{ auth()->user()->phone ?? null }}" :addresses="{{ $addresses }}"
|
||||
:default-address="{{ $defaultAddress }}" :gateways="{{ $gateways }}" :countries="{{ json_encode($countries) }}"
|
||||
inline-template>
|
||||
<checkout-create
|
||||
customer-email="{{ auth()->user()->email ?? null }}"
|
||||
customer-phone="{{ auth()->user()->phone ?? null }}"
|
||||
:addresses="{{ $addresses }}"
|
||||
:default-address="{{ $defaultAddress }}"
|
||||
:gateways="{{ $gateways }}"
|
||||
:countries="{{ json_encode($countries) }}"
|
||||
inline-template
|
||||
>
|
||||
<section class="checkout-wrap">
|
||||
<div class="container">
|
||||
<template v-if="cartIsNotEmpty">
|
||||
@include('public.cart.index.steps')
|
||||
|
||||
<form @submit.prevent="placeOrder" @input="errors.clear($event.target.name)">
|
||||
<div class="checkout">
|
||||
<div class="checkout-inner">
|
||||
<div class="checkout-left">
|
||||
<div class="checkout-form">
|
||||
@include('public.checkout.create.form.account_details')
|
||||
@include('public.checkout.create.form.billing_details')
|
||||
@include('public.checkout.create.form.shipping_details')
|
||||
@include('public.checkout.create.form.order_note')
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="checkout-right">
|
||||
@include('public.checkout.create.payment')
|
||||
@include('public.checkout.create.coupon')
|
||||
</div>
|
||||
<form class="checkout-form" @submit.prevent="placeOrder" @input="errors.clear($event.target.name)">
|
||||
<div class="checkout-inner">
|
||||
<div class="checkout-left">
|
||||
@include('public.checkout.create.form.account_details')
|
||||
@include('public.checkout.create.form.billing_details')
|
||||
@include('public.checkout.create.form.shipping_details')
|
||||
@include('public.checkout.create.form.order_note')
|
||||
</div>
|
||||
|
||||
@include('public.checkout.create.order_summary')
|
||||
<div class="checkout-right">
|
||||
@include('public.checkout.create.payment')
|
||||
@include('public.checkout.create.shipping')
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@include('public.checkout.create.order_summary')
|
||||
</form>
|
||||
|
||||
@if (setting('authorizenet_enabled'))
|
||||
|
||||
Reference in New Issue
Block a user