Skip to content
Advertisement

How to disable registration new users in Laravel

I’m using Laravel. I want to disable registration for new users but I need the login to work.

How can I disable registration form/routes/controllers?

Advertisement

Answer

Laravel 5.7 introduced the following functionality:

JavaScript

The currently possible options here are:

JavaScript

For older Laravel versions just override showRegistrationForm() and register() methods in

  • AuthController for Laravel 5.0 – 5.4
  • Auth/RegisterController.php for Laravel 5.5
JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement