Skip to content

Commit af8816d

Browse files
Update verify.blade.php
1 parent 3c747a8 commit af8816d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/material-stubs/resources/views/auth/verify.blade.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,16 @@
2020
{{ __('Before proceeding, please check your email for a verification link.') }}
2121

2222
@if (Route::has('verification.resend'))
23-
{{ __('If you did not receive the email') }}, <a href="{{ route('verification.resend') }}">{{ __('click here to request another') }}</a>
23+
{{ __('If you did not receive the email') }},
24+
<form class="d-inline" method="POST" action="{{ route('verification.resend') }}">
25+
@csrf
26+
<button type="submit" class="btn btn-link p-0 m-0 align-baseline">{{ __('click here to request another') }}</button>.
27+
</form>
2428
@endif
2529
</p>
2630
</div>
2731
</div>
2832
</div>
2933
</div>
3034
</div>
31-
@endsection
35+
@endsection

0 commit comments

Comments
 (0)