Fixed this, the issue is everything gets passed through the route controller with '/' when it hits it, so it wont go through anything after it. So I fixed my issue by changing:
Route::controllers([
'/' => 'Auth\AuthController',
'password' => 'Auth\PasswordController',
]);
to this:
Route::controllers([
'password' => 'Auth\PasswordController',
'/' => 'Auth\AuthController',
]);
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community