Skip to content

Commit

Permalink
add required indicators to credit card fields
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Anderson committed Oct 23, 2023
1 parent 138ebd0 commit baac51b
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions resources/views/paypal/components/payment-form.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,30 @@
<div>
<div class="mt-6 grid grid-cols-4 gap-y-6 gap-x-4">
<div class="col-span-4">
<label for="card-number">Card Number</label>
<label for="card-number">
Card Number
<small class="text-xs text-red-500">*</small>
</label>
<div class="card_field"
id="card-number"
style="max-height: 20px;">
</div>
</div>

<div class="col-span-3">
<label for="expiration-date">Expiration Date</label>
<label for="expiration-date">
Expiration Date
<small class="text-xs text-red-500">*</small>
</label>
<div class="card_field"
id="expiration-date"></div>
</div>

<div>
<label for="cvv">CVV</label>
<label for="cvv">
CVV
<small class="text-xs text-red-500">*</small>
</label>
<div class="card_field"
id="cvv"></div>
</div>
Expand Down

0 comments on commit baac51b

Please sign in to comment.