Just sharing a link telling us how to remove the “auth” in the URL for Laravel’s pre-made login system.
You need to modify
App\Http\Middleware\Authenticate::handle()
method and changeauth/login
to/login
.Then you need to add
$loginPath
property to your\App\Http\Controllers\Auth\AuthController
class.Source: How to change default redirect URL of Laravel 5 Auth filter?