Skip to content

Commit

Permalink
fix: change method of re-send email template (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaileshInfyom authored Feb 3, 2022
1 parent 32448a6 commit fcf3cb9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion adminlte-stubs/auth/verify.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,13 @@
@endif
<p>Before proceeding, please check your email for a verification link.If you did not receive
the email,</p>
<a href="{{ route('verification.resend') }}">click here to request another'</a>.
<a href="#"
onclick="event.preventDefault(); document.getElementById('resend-form').submit();">
click here to request another.
</a>
<form id="resend-form" action="{{ route('verification.resend') }}" method="POST" class="d-none">
@csrf
</form>
</div>
</div>
</div>
Expand Down

0 comments on commit fcf3cb9

Please sign in to comment.