I\'m trying to apply Laravel-5.7 MustVerifyEmail on multiple authentication system. So far what I\'ve done is as follows:
I modified the middleware parameter in the __construct and email verification worked for me. I'm using laravel 6. posting the answer here though the question is old
public function __construct()
{
$this->middleware('auth:');
$this->middleware('signed')->only('verify');
$this->middleware('throttle:6,1')->only('verify', 'resend');
}