I\'m using Laravel (v5).
I need one user and I\'ve already registered that. Now I want to disable registration for new users. Of course, I need the login form to wor
As of Laravel 5.7 you can pass an array of options to Auth::routes(). You can then disable the register routes with:
Auth::routes()
Auth::routes(['register' => false]);
You can see how this works from the source code: src/Illuminate/Routing/Router.php.