Merge pull request #1186 from stoney024/master

Forgot password back link translation
This commit is contained in:
Jitendra Singh 2019-07-18 14:40:34 +05:30 committed by GitHub
commit c560dda2e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 1 deletions

View File

@ -21,6 +21,7 @@ class CustomerResetPassword extends ResetPassword
}
return (new MailMessage)
->subject(__('shop::app.mail.forget-password.subject') )
->view('shop::emails.customer.forget-password', [
'user_name' => $notifiable->name,
'token' => $this->token

View File

@ -509,6 +509,7 @@ return [
'greeting' => 'An Order :order_id has been placed on :created_at',
],
'forget-password' => [
'subject' => 'Customer Reset Password',
'dear' => 'Dear :name',
'info' => 'You are receiving this email because we received a password reset request for your account',
'reset-password' => 'Reset Password',

View File

@ -46,7 +46,7 @@
<div class="control-group" style="margin-bottom: 0px;">
<a href="{{ route('customer.session.index') }}">
<i class="icon primary-back-icon"></i>
Back to Sign In
{{ __('shop::app.customer.reset-password.back-link-title') }}
</a>
</div>