Check the make: auth source to understand the files or changes it created.
You will need to delete these files.
- auth / login.blade.php
- authorization /register.blade.php
- authorization / passwords / email.blade.php
- authorization / passwords / reset.blade.php
- Layouts /app.blade.php
- home.blade.php
As soon as this is done
Go to the /web.php routes, delete the routes created by the make: auth command. Delete these two lines and your project will work correctly.
Auth::routes(); Route::get('/home', ' HomeController@index ');
source share