You have done nothing wrong. Auth Scaffolding has been removed from Laravel 5.1. This includes the app.blade.php and home.blade.php that you mentioned.
However, you can still return it using the Scafold package :
1. Add Scafold to your composer.json file in the require : section:
require : { "laravel/framework": "5.1.*", "bestmomo/scafold": "dev-master" }
or enter from the terminal:
composer require bestmomo/scafold dev-master
2.Update composer:
composer update
3.Add the service provider to config / app.php:
Bestmomo\Scafold\ScafoldServiceProvider::class,
4.Remove submissions and assets:
php artisan vendor:publish
Done!
Ennosuke ajibana
source share