user259584
user259584

Reputation: 65

Laravel class 'Form' not found

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

Answers (2)

Ozan Kurt
Ozan Kurt

Reputation: 3866

Better would be to use https://laravelcollective.com/ since the illuminate/html is deprecated.

Upvotes: 1

Ben Harold
Ben Harold

Reputation: 6432

Form is not a class in Illuminate\Html. You're probably looking for FormBuilder.

Upvotes: 0

Related Questions