Certain auth routes made by using the Auth scaffolding of Laravel 5.2 are not needed or needs to be customized for this application. Specifically, calling Route::auth() will use built-in routes as specified by Laravel.
This could be resolved by writing custom routes and not using Route::auth() in the routes area.
Certain auth routes made by using the Auth scaffolding of Laravel 5.2 are not needed or needs to be customized for this application. Specifically, calling
Route::auth()
will use built-in routes as specified by Laravel.This could be resolved by writing custom routes and not using
Route::auth()
in the routes area.