@include('plugins/ecommerce::orders.partials.logo')
{!! apply_filters('ecommerce_checkout_form_before', null, $products) !!}
@if ($isShowAddressForm)
{{ __('Shipping information') }}
@include(
'plugins/ecommerce::orders.partials.address-form',
compact('sessionCheckoutData')
)
{!! apply_filters('ecommerce_checkout_form_after_shipping_address_form', null, $products) !!}
@endif
@if (EcommerceHelper::isBillingAddressEnabled())
{{ __('Billing information') }}
@include(
'plugins/ecommerce::orders.partials.billing-address-form',
compact('sessionCheckoutData')
)
{!! apply_filters('ecommerce_checkout_form_after_billing_address_form', null, $products) !!}
@endif
@if (! is_plugin_active('marketplace'))
@if (Arr::get($sessionCheckoutData, 'is_available_shipping', true))
{{ __('Shipping method') }}
@include('plugins/ecommerce::orders.partials.shipping-methods')
{!! apply_filters('ecommerce_checkout_form_after_shipping_address_form', null, $products) !!}
@endif
@endif
{!! apply_filters('ecommerce_checkout_form_before_payment_form', null, $products) !!}
@include('plugins/ecommerce::orders.partials.payment-methods')
{!! apply_filters('ecommerce_checkout_form_after_payment_form', null, $products) !!}
$errors->has('description')])>
{{ __('Order notes') }}
{!! Form::error('description', $errors) !!}
@if (EcommerceHelper::getMinimumOrderAmount() > $rawTotal)
{{ __('Minimum order amount is :amount, you need to buy more :more to place an order!', ['amount' => format_price(EcommerceHelper::getMinimumOrderAmount()), 'more' => format_price(EcommerceHelper::getMinimumOrderAmount() - Cart::instance('cart')->rawSubTotal())]) }}
@endif
@if (EcommerceHelper::isDisplayTaxFieldsAtCheckoutPage())
@include(
'plugins/ecommerce::orders.partials.tax-information',
compact('sessionCheckoutData')
)
{!! apply_filters('ecommerce_checkout_form_after_tax_information_form', null, $products) !!}
@endif
@if($privacyPolicyUrl = theme_option('ecommerce_term_and_privacy_policy_url'))
{!! BaseHelper::clean(__(
'I agree to the :link',
['link' => Html::link($privacyPolicyUrl, __('Terms and Privacy Policy'), attributes: ['class' => 'text-decoration-underline', 'target' => '_blank'])]
)) !!}
@endif
{!! apply_filters('ecommerce_checkout_form_after', null, $products) !!}
{{ __('Back to cart') }}
{!! apply_filters('ecommerce_checkout_form_after_back_to_cart_link', null, $products) !!}
@if (EcommerceHelper::isValidToProcessCheckout())
{{ __('Checkout') }}
@else
{{ __('Checkout') }}
@endif