¨4.0.1¨

This commit is contained in:
¨NW¨
2023-12-03 14:07:47 +00:00
parent c08b36d1b6
commit f35052522d
1112 changed files with 43019 additions and 24987 deletions

View File

@@ -1,18 +1,19 @@
<div class="payment-method" v-cloak>
<div class="payment-method">
<h4 class="title">{{ trans('storefront::checkout.payment_method') }}</h4>
<div class="payment-method-form">
<div class="form-group">
<div class="form-radio" v-for="(gateway, name) in gateways">
<div class="form-radio" v-for="(gateway, name, index) in gateways" :key="index">
<input
type="radio"
name="form.payment_method"
name="payment_method"
v-model="form.payment_method"
:value="name"
:id="name"
>
<label :for="name" v-text="gateway.label"></label>
<span class="helper-text" v-text="gateway.description"></span>
</div>
@@ -27,9 +28,9 @@
{{-- A Stripe Element will be mounted here dynamically. --}}
</div>
<span class="error-message" v-if="stripeError" v-text="stripeError"></span>
<span class="error-message stripe-error-message" v-if="stripeError" v-text="stripeError"></span>
<div class="payment-instructions" v-if="shouldShowPaymentInstructions" v-cloak>
<div class="payment-instructions" v-if="shouldShowPaymentInstructions">
<h4 class="title">{{ trans('storefront::checkout.payment_instructions') }}</h4>
<p v-html="paymentInstructions"></p>