Add laravel HTML & Form Classes back to laravel 5 1,119 views

By default in Laravel 5, Html and Form are not embedded anymore, And we’re going to add them back. illuminate/html 01 – 1. Option one. In require section within composer.json add this line:
1 | "illuminate/html": "~5.0" |
So you require section will be something like this:
1 2 3 4 | "require": { "laravel/framework": "5.0.*", "illuminate/html": "~5.0" }, |
then run composer update from your terminal. 01 – 2. Option two.…