Recently I start to use laravel 5.3 to write a blog, but I have a question after run php artisan make:auth
php artisan make:auth
when I run this, it will generate routes in m
if you are in laravel 5.7 and above Auth::routes(['register' => false]); in web.php
Auth::routes(['register' => false]);
more possible options are as:
Auth::routes([ 'register' => false, // Routes of Registration 'reset' => false, // Routes of Password Reset 'verify' => false, // Routes of Email Verification ]);