SBD
SBD

Reputation: 446

Laravel 5 Class 'Illuminate\Support\Facades\FormFacade' not found

Ok, this is driving me mad. I'm trying to include forms functionalities with FormFacade with Laravel 5, but I keep getting this error:

Class 'Illuminate\Support\Facades\FormFacade' not found

I'll write down what I have done:

All of this is done, but still I cannot find whats going wrong. I searched for help but nothing seems to work.

Search effort:

Still no luck. Have I missed something?

PS: I'm running on windows.

Upvotes: 3

Views: 4558

Answers (1)

lukasgeiter
lukasgeiter

Reputation: 152850

Those aliases are wrong. You should use the facades from Illuminate\Html:

'Html' => 'Illuminate\Html\HtmlFacade',
'Form' => 'Illuminate\Html\FormFacade',

Upvotes: 3

Related Questions