I\'ve just upgraded Laravel from 5.0 to 5.1.
I get this error:
Call to undefined method Illuminate\\Foundation\\Application::bindShared()
Illuminate/html
is abandoned. Use Collective/html
instead.
To install it use the following
composer require "laravelcollective/html":"^5.2.0"
Then in app/app.php file change/add as following
for providers
Collective\Html\HtmlServiceProvider::class
and for aliases
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,