Support the ongoing development of Laravel.io →
Configuration Authentication Architecture
Last updated 1 year ago.
0

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',
]);
0

Sign in to participate in this thread!

Eventy

Your banner here too?

iisurge iisurge Joined 7 Apr 2015

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.