Answers for "laravel blade class form not found"

1

Class 'Form' not found

composer require "laravelcollective/html"
Posted by: Guest on July-27-2020
0

Class 'Form' not found

'providers' => [
    // ...
    Collective\Html\HtmlServiceProvider::class,
    // ...
],

'aliases' => [
    // ...
   'Form' => Collective\Html\FormFacade::class,
   'Html' => Collective\Html\HtmlFacade::class,
    // ...
],
Posted by: Guest on July-27-2020

Code answers related to "laravel blade class form not found"

Browse Popular Code Answers by Language