Skip to content

Commit

Permalink
Merge pull request #782 from sebdesign/10.0
Browse files Browse the repository at this point in the history
Add language line for full name placeholder
  • Loading branch information
taylorotwell authored Sep 16, 2019
2 parents b2843e4 + 6d86477 commit 75329ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions resources/lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"Extra confirmation is needed to process your payment. Please continue to the payment page by clicking on the button below.": "Extra confirmation is needed to process your payment. Please continue to the payment page by clicking on the button below.",
"Full name": "Full name",
"Go back": "Go back",
"Jane Doe": "Jane Doe",
"Pay :amount": "Pay :amount",
"Payment Cancelled": "Payment Cancelled",
"Payment Confirmation": "Payment Confirmation",
Expand Down
2 changes: 1 addition & 1 deletion resources/views/payment.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<!-- Name -->
<label for="cardholder-name" class="inline-block text-sm text-gray-700 font-semibold mb-2">{{ __('Full name') }}</label>

<input id="cardholder-name" type="text" placeholder="Jane Doe" required
<input id="cardholder-name" type="text" placeholder="{{ __('Jane Doe') }}" required
class="inline-block bg-gray-200 border border-gray-400 rounded-lg w-full px-4 py-3 mb-3 focus:outline-none"
v-model="name">

Expand Down

0 comments on commit 75329ae

Please sign in to comment.