I just created a new project of laravel version 5.5 with the laravel installer.And run the command \"php artisan make:auth\".The views and controller are generated
I had the same issue and it was because I was using virtualhost and I setup below variable to mydomain.com. in config/session.php file
'domain' => env('SESSION_DOMAIN', 'mydomain.com'),
When I changed it to null then it started working
'domain' => env('SESSION_DOMAIN', 'null'),
I don't know what is the reason behind it but it is working fine now.