Hi,
Right now, when a logged in user is trying to go to /register while he's logged it, it redirects to the /dashboard.
I couldn't find where to change that.
On config/fortify.php you have the Home Path:
/*
|--------------------------------------------------------------------------
| Home Path
|--------------------------------------------------------------------------
|
| Here you may configure the path where users will get redirected during
| authentication or password reset when the operations are successful
| and the user is authenticated. You are free to change this value.
|
*/
'home' => '/dashboard',
But that doesn't work if I change it to 'home' => '/', because I guess as the comment above says, it's only for successful operations not redirects without any action
Thanks