1

first Add in composer.json

"illuminate/html": "5.*" and update composer

second

add under 'providers'

Illuminate\Html\HtmlServiceProvider::class, add under 'aliases'

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

but after i run my page it say Class 'HTML' not found what the problem

Danusorn
  • 109
  • 7

1 Answers1

0

You should install Laravel Collective HTML & Forms to make it work. Laravel developers removed this package from Laravel 5, so now you should install it manually.

Alexey Mezenin
  • 158,981
  • 26
  • 290
  • 279