Hello Devs,

In this tutorial, we are going to learn  how to remove register route in laravel.

Follow this step by step guide given below:




Create Route

Auth::routes();

to:

Auth::routes(['register' => false]);



Modify Controller

public function showRegistrationForm()
{
    return redirect('login');
}

public function register()
{
    // empty
}


I hope this example helps you.