Good day Rajaa
try to install the Laravel Collective Package using
"composer require laravelcollective/html"
also add your new provider to the providers array of config/app.php
'providers' => [ // ... Collective\Html\HtmlServiceProvider::class, // ... ],
add two class aliases to the aliases array of config/app.php 'aliases' => [ // ... 'Form' => Collective\Html\FormFacade::class, 'Html' => Collective\Html\HtmlFacade::class, // ... ],
for more information you can check: https://laravelcollective.com/docs/5.1/html#installation
I hope this helps.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community