Route [verification.verify] not defined when enabling emailVerification() on the panel
After upgrading to V3 I added the ->emailVerification() option but when I submit the form I get that error
5 Replies
Anyone?
Getting same issue🥲
@Javier M You got the solution?
@Javier M I have got the solution. See:
https://github.com/filamentphp/filament/pull/9875/files
GitHub
Fix Octane by danharrin · Pull Request #9875 · filamentphp/filament
Fixes #7922. The only option was to make a breaking change, avoiding the Registered event and sending our notification without a listener.
Fixes #7969. Panel objects were being shared between reque...
Just replace
$this->sendEmailVerificationNotification($user);
instead of this:
app()->bind(
\Illuminate\Auth\Listeners\SendEmailVerificationNotification::class,
\Filament\Listeners\Auth\SendEmailVerificationNotification::class,
);
event(new Registered($user));
Hey, were you able to resolve this problem?