Why did Laravel 5.1 remove the default authentication views?

I am new to Laravel and just tested the Laravel 5.1 authentication part. And I got "View [auth.login] not found". when I accessed "/ auth / login". It looks like there is no kind of authentication as it should be.

How can I get it back? Should I try 5.0 instead? Thank.

+3


source to share


1 answer


Since Laravel 5 views, assets and routes have been removed. The arrival of version 5.1 saw these items disappear after much discussion ...

when you install laravel 5.1 you only get the homepage (welcome.blade.php). To restore authentication, install this package:



Scafold

Laravel 5.1 is LTS , which means long term support, bug fixes for 2 years and security fixes for 3 years ... so 5.1 is recommended instead of 5.

+3


source







All Articles