I am trying to disable the register route on my application which is running in Laravel 5.4.
In my routes file, I have only the
Auth::routes();
I guess you can do it like this, in your web.php file:
Route::redirect('register', 'login', 301);