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
In order not too change the code as it is, just create a middleware to detect if the request url is url('register'), then redirect to 404 or do wherever.