Class 'form' not found (ok)
https://stackoverflow.com/questions/43207428/laravel-5-4-class-form-not-found
Part 1
composer require laravelcollective/html
Part 2: add these two lines into config/app.php
'aliases' => [
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
}
Last updated
Was this helpful?