The Form and HTML facades have been removed in laravel 5, but are available in the illuminate\html package.
https://github.com/illuminate/html
You can install this package via composer
https://packagist.org/packages/illuminate/html.
Don't forget to add the service provider in your config file
'Illuminate\Html\HtmlServiceProvider',
You also have to add aliases for your the facades.
'HTML' => 'Illuminate\Html\HtmlFacade',
'Form' => 'Illuminate\Html\FormFacade',
Now you have the Form and HTML classes available.
There are a lot of helper classes https://github.com/illuminate/support/blob/master/helpers.php
Yes I know they have been removed but why? Does that mean there is a better way to generate form?
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community