Larvel Auth url Changes

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(); });