Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add language line for full name placeholder #782

Merged
merged 1 commit into from
Sep 16, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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