Skip to content

Commit

Permalink
Update verify.blade.php
Browse files Browse the repository at this point in the history
  • Loading branch information
teamupdivision committed Sep 23, 2019
1 parent 25bdc6d commit f2183fa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/white-stubs/resources/views/auth/verify.blade.php
Expand Up @@ -21,7 +21,11 @@
{{ __('Before proceeding, please check your email for a verification link.') }}

@if (Route::has('verification.resend'))
{{ __('If you did not receive the email') }}, <a href="{{ route('verification.resend') }}">{{ __('click here to request another') }}</a>
{{ __('If you did not receive the email') }},
<form class="d-inline" method="POST" action="{{ route('verification.resend') }}">
@csrf
<button type="submit" class="btn btn-link p-0 m-0 align-baseline">{{ __('click here to request another') }}</button>.
</form>
@endif
</div>
</div>
Expand Down

0 comments on commit f2183fa

Please sign in to comment.