Larvel Auth url Changes
![Image](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi1m68CTy2W1_2goVoTQ37WB0m4OAi9_AG0K1wKUCGbCDuJX5Ybcqpe5gurxEM6UP0BDQGWIShAN8N7gYdJz503Q8fYcYMwfUbjtlTlc-smeot9DDczRvryNqIQlz4BgLkiGCul797MriXA/s320/Screenshot+%2528163%2529.png)
Check all routes by coomand php artisan route:list Default routes // Authentication Routes... Route::get( 'login' , 'Auth\AuthController@showLoginForm' ); Route::post( 'login' , 'Auth\AuthController@login' ); Route::get( 'logout' , 'Auth\AuthController@logout' ); // Registration Routes... Route::get( 'register' , 'Auth\AuthController@showRegistrationForm' ); Route::post( 'register' , 'Auth\AuthController@register' ); // Password Reset Routes... Route::get( 'password/reset/{token?}' , 'Auth\PasswordController@showResetForm' ); Route::post( 'password/email' , 'Auth\PasswordController@sendResetLinkEmail' ); Route::post( 'password/reset' , 'Auth\PasswordController@reset' ); You can put you all routes in admin by Route::group([ 'prefix' => 'admin' ], function ( ) { Route::auth(); });