Multi guard causing ERR_TOO_MANY_REDIRECT on email verification Laravel
Hi, so I'm trying to create a login register with Laravel Breeze using multiple guards and multiple login forms. However, when I'm trying to implement email verification, I always get ERR_TOO_MANY_REDIRECT when it's redirected to verification.notice route. I wonder why this is happening, and if there is any solution for this? Thank you, I really appreciate for an answer because I've been trying for hours looking for a solution.
@oukamiyuki This is one of the reasons you should use roles instead of multiple guards. As soon as you introduce multiple guards, you just get conflicts and bugs like this.
I see, thank you for the answer, I've managed to fix the bug by creating different routes and controller for each guard, it's a little bit troublesome yes, but I can finally fix the problem