diff options
| author | Zach DeCook <zachdecook@librem.one> | 2019-09-11 22:13:06 -0400 |
|---|---|---|
| committer | Zach DeCook <zachdecook@librem.one> | 2019-09-11 22:13:06 -0400 |
| commit | 79bd421bb1f204ab8acfd4c254e1f5582142a294 (patch) | |
| tree | 281e6db5d4d227a097407365de126c5b71b6552a /laravel/resources | |
| parent | 36b20054f2f0a2afe9d358cc1a7a8c8235606d1a (diff) | |
| download | prosongsa-79bd421bb1f204ab8acfd4c254e1f5582142a294.tar.gz | |
* Laravel: Update framework
Diffstat (limited to 'laravel/resources')
| -rw-r--r-- | laravel/resources/views/auth/verify.blade.php | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/laravel/resources/views/auth/verify.blade.php b/laravel/resources/views/auth/verify.blade.php index c742cb4..16e7263 100644 --- a/laravel/resources/views/auth/verify.blade.php +++ b/laravel/resources/views/auth/verify.blade.php @@ -15,7 +15,16 @@ @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>. + {{ __('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> + <a href="{{ route('verification.resend') }}">{{ __('click here to request another') }}</a>. </div> </div> </div> |
