In a Laravel 6 application, the make: auth command no longer exists.
Laravel UI is a new third-party package that extracts part of the Laravel project UI into a separate laravel / ui package. A separate package allows the Laravel team to iterate the UI package separately from the Laravel core code base.
You can install the laravel/ui package through composer:
composer require laravel/ui
ui:auth command ui:auth
In addition to the new user interface command, the laravel/ui package comes with another command for generating authentication forests:
php artisan ui:auth
If you run the ui:auth command, it will generate authentication routes, HomeController , authentication views, and the app.blade.php layout file.
If you want to create only views, enter the following command instead:
php artisan ui:auth --views
If you want to create authenticated forests at the same time:
php artisan ui vue --auth php artisan ui react --auth
The php artisan ui vue --auth will create all the views needed for authentication and place them in the resources/views/auth
The ui team will also create a resources/views/layouts directory containing the base layout for your application. All of these views use the Bootstrap CSS framework, but you can customize them as you wish.
Follow in more detail. Laravel News & Documentation
You just have to follow this two-step step.
composer require laravel/ui php artisan ui:auth