In one of my previous posts, I have shown how to disable registration in Laravel.
In Laravel 5.7, a new way has been introduced to disable registration and that's all thanks to Dennis Smink, for his excellent pull request
Auth::routes(['register' => false]);
That's the only code you need to add and that would disable the registration in your Laravel application.
Top comments (0)