Update password reset

This commit is contained in:
Daniel Supernault 2019-02-11 19:37:14 -07:00
parent f3c16ceacb
commit cc8337888e
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
2 changed files with 5 additions and 11 deletions

View File

@ -15,8 +15,8 @@ return [
'password' => 'Passwords must be at least six characters and match the confirmation.',
'reset' => 'Your password has been reset!',
'sent' => 'We have e-mailed your password reset link!',
'sent' => 'If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes. Please check your spam folder if you didn\'t receive this email.',
'token' => 'This password reset token is invalid.',
'user' => "We can't find a user with that e-mail address.",
'user' => 'If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes. Please check your spam folder if you didn\'t receive this email.',
];

View File

@ -8,9 +8,9 @@
<div class="card-header bg-white p-3 text-center font-weight-bold">{{ __('Reset Password') }}</div>
<div class="card-body">
@if (session('status'))
@if (session('status') || $errors->has('email'))
<div class="alert alert-success">
{{ session('status') }}
{{ session('status') ?? $errors->first('email') }}
</div>
@endif
@ -19,13 +19,7 @@
<div class="form-group row">
<div class="col-md-12">
<input id="email" type="email" class="form-control{{ $errors->has('email') ? ' is-invalid' : '' }}" name="email" placeholder="{{ __('E-Mail Address') }}" value="{{ old('email') }}" required>
@if ($errors->has('email'))
<span class="invalid-feedback">
<strong>{{ $errors->first('email') }}</strong>
</span>
@endif
<input id="email" type="email" class="form-control" name="email" placeholder="{{ __('E-Mail Address') }}" value="{{ old('email') }}" required>
</div>
</div>