Skip to content

Commit

Permalink
Make verify scaffolding translatable (#25473)
Browse files Browse the repository at this point in the history
  • Loading branch information
cesargb authored and taylorotwell committed Sep 6, 2018
1 parent 97b6dee commit b8d3665
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Illuminate/Auth/Console/stubs/make/views/auth/verify.stub
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@
<div class="row justify-content-center">
<div class="col-md-8">
<div class="card">
<div class="card-header">Verify Your Email Address</div>
<div class="card-header">{{ __('Verify Your Email Address') }}</div>

<div class="card-body">
@if (session('resent'))
<div class="alert alert-success" role="alert">
A fresh verification link has been sent to your email address.
{{ __('A fresh verification link has been sent to your email address.') }}
</div>
@endif

Before proceeding, please check your email for a verification link.
If you did not receive the email, <a href="{{ route('verification.resend') }}">click here to request another</a>.
{{ __('Before proceeding, please check your email for a verification link.') }}
{{ __('If you did not receive the email') }}, <a href="{{ route('verification.resend') }}">{{ __('click here to request another') }}</a>.
</div>
</div>
</div>
Expand Down

0 comments on commit b8d3665

Please sign in to comment.