Reputation: 65
I have a problem with Laravel Form & HTML. I ran Composer.
composer require illuminate/html
It worked just fine and I added Illuminate\Html\HtmlServiceProvider::class,
to my app.php. I also added 'Form' => Illuminate\Html\FormFacade::class,
and 'Html'=> Illuminate\Html\HtmlFacade::class,
to my aliases but I still get an error.
FatalErrorException in 792badfd9bd1a291ca2af663e544784e7ea6712c.php line 6: Class 'Form' not found
Upvotes: 0
Views: 150
Reputation: 3866
Better would be to use https://laravelcollective.com/ since the illuminate/html
is deprecated.
Upvotes: 1
Reputation: 6432
Form
is not a class in Illuminate\Html
. You're probably looking for FormBuilder
.
Upvotes: 0