I like Form Builder. Go Laravel.
What is the difference between the Illuminate version and the Laravel Collective Version , and what should we use? Is the Illuminate Version Invalid?
You have an explanation here: http://laravel.com/docs/5.0/upgrade#upgrade-5.0 under Form Helpers and HTML
In principle, the Illuminate versions of the Form helper and HTML helper are deprecated in the current version of Laravel and removed from the core framework. They are now supported by the Larawell Collection.
, Laravel 5, Laravel, : laravel Collective: Forms and HTML
Laravel 5 , , , Laravel 4.
composer.json require:
"illuminate/html": "5.*"
, , .
config/app.php , :
Illuminate\Html\HtmlServiceProvider
config/app.php :
'Form'=> 'Illuminate\Html\FormFacade', 'HTML'=> 'Illuminate\Html\HtmlFacade'