Skip to content

Commit 81ea388

Browse files
Update verification template for Laravel 6 - closes #60
1 parent 2fdcfc9 commit 81ea388

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

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

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,13 @@
2121
{{ __('Before proceeding, please check your email for a verification link.') }}
2222
</p>
2323

24-
<a class="bg-blue-500 hover:bg-blue-700 text-gray-100 font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline no-underline mx-auto" href="{{ route('verification.resend') }}">
25-
{{ __('Resend verification email') }}
26-
</a>
24+
{{ __('If you did not receive the email') }},
25+
<form class="inline" method="post" action="{{ route('verification.resend') }}">
26+
@csrf
27+
<button class="bg-blue-500 hover:bg-blue-700 text-gray-100 font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline no-underline mx-auto">
28+
{{ __('click here to resend another') }}
29+
</button>
30+
</form>
2731
</div>
2832

2933
</div>

0 commit comments

Comments
 (0)