Reputation: 59
I have looked and looked and looked and can find no solutions to this problem. There are solutions for Laravel 5 but I don't think they apply to Laravel 4. Anyone know of the easiest way to get rid of this?
This is the code that causes the problem:
{{Form::open}}
Upvotes: 0
Views: 87
Reputation: 4167
You need to include illuminate/html
in composer.json
also remember to register the
service provider : Illuminate\Html\HtmlServiceProvider
and to add the aliases : 'HTML' => 'Illuminate\Html\HtmlFacade'
'Form' => 'Illuminate\Html\FormFacade'
for more information Click here
Upvotes: 1