|
@@ -4,11 +4,11 @@
|
|
|
<input type="hidden" name="customerUid" value="{{$customer->uid}}">
|
|
|
<p class="text-secondary font-weight-bold mb-1 text-nowrap">Add Payment Method</p>
|
|
|
<div class="mb-2">
|
|
|
- <lable class="mb-1 text-secondary text-sm">Card Number</lable>
|
|
|
+ <label class="mb-1 text-secondary text-sm">Card Number</label>
|
|
|
<input type="text" name="cardNumber" value="" class="form-control form-control-sm min-width-200px" required>
|
|
|
</div>
|
|
|
<div class="mb-2">
|
|
|
- <lable class="mb-1 text-secondary text-sm">Expiry Date</lable>
|
|
|
+ <label class="mb-1 text-secondary text-sm">Expiry Date</label>
|
|
|
<div class="d-flex align-items-start">
|
|
|
<select class="form-control form-control-sm" name="expirationMonth" required>
|
|
|
<option value="">-- select --</option>
|
|
@@ -25,22 +25,16 @@
|
|
|
<option value="11">November</option>
|
|
|
<option value="12">December</option>
|
|
|
</select>
|
|
|
- <select class="form-control form-control-sm ml-2" name="expirationYear" required>
|
|
|
- <option value="">-- select --</option>
|
|
|
- <option value="2022">2022</option>
|
|
|
- <option value="2023">2023</option>
|
|
|
- <option value="2024">2024</option>
|
|
|
- <option value="2025">2025</option>
|
|
|
- <option value="2026">2026</option>
|
|
|
- </select>
|
|
|
+ <input type="number" name="expirationYear" class="form-control form-control-sm ml-2" placeholder="Expiry Year" required>
|
|
|
+
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="mb-2">
|
|
|
- <lable class="mb-1 text-secondary text-sm">CVV/CCV Number</lable>
|
|
|
+ <label class="mb-1 text-secondary text-sm">CVV/CCV Number</label>
|
|
|
<input type="text" name="ccv" value="" class="form-control form-control-sm min-width-200px" required>
|
|
|
</div>
|
|
|
<div class="mb-2">
|
|
|
- <lable class="mb-1 text-secondary text-sm">Billing Zip</lable>
|
|
|
+ <label class="mb-1 text-secondary text-sm">Billing Zip</label>
|
|
|
<input type="text" name="billingZip" value="" class="form-control form-control-sm min-width-200px">
|
|
|
</div>
|
|
|
<div class="d-flex align-items-center">
|