On a project I have I am using Fortify as my BE. I need a multilingual app, therefore I added the
'prefix' => {locale}'
to config/fortify.php.
Login, registering, and 2FA, are working ok, but the problem arrives with the email verification process.
If I try to click on the link received by email, it goes to the /email/verify
and returns a forbidden page error.
Then if I request to get another verification email it returns the error displayed on the title of the question.
Probably it has something to be with the locale parameter because when I run route::list, the verification.verify
route is displayed with the endpoint of {locale}/email/verify/{id}/{hash}
, so I assume that the link on the request another mail is causing the error since it is referenced as /email/verify/{id}/{hash}
.
So does anyone know how to change it? Or has anyone faced a similar problem regarding Fortify and these localization routes?
What I had to do was to customize some of the default Fortify functions, extending some classes in order to add the locale parameter to them.
When a new user is registered (event) it sends the verification email (listener), so I had to configure the files involved in this flow.
And create the function sendCustomVerificationEmailNotification on the user's model and the notification CustomVerificationNotification that will be sent.
Then in case, the user wants an additional verification email notification, this is handled through a function on the EmailVerificationNotificationController