cms
cms copied to clipboard
Route [guard.verification.notice] not defined.
Email Verification Not Working. While Login And Register This Message Shows "Route [guard.verification.notice] not defined"
Same here.. Is there any solution?
I had replaced in blade file something like below
{{ URL::route('guard.verification.resend',['guard'=>'client']) }}
Same here ..
Hi, I have found the solution.
Go to /public/themes/client/views/auth/verify.blade.php
Change this line
<a href="{{ route('verification.resend') }}">
To this line, how @ionwebs said. it should work.
<a href="{{ URL::route('guard.verification.resend',['guard'=>'client']) }}">