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/loginto/login.Then you need to add
$loginPathproperty to your\App\Http\Controllers\Auth\AuthControllerclass.Source: How to change default redirect URL of Laravel 5 Auth filter?