The entire error is below. I tried googling a bit and tried removing composer.lock. Also tried getting dev-master to see if there was something there. Not sure what else I can try. Please let me know if I can help debug by trying something else.
Hello, bindShared() have been replaced with singleton() It is located here: /path-to-your-project/vendor/illuminate/html/HtmlServiceProvider.php change on line no : 36 and 49
You need to remove this outdated package (taken out of the core and no longer supported):
"illuminate/html": "^5.0", When you remove it, you need to also remove its service providers / aliases. So, if you open up config/app.php, you will see a providers and aliases section. Remove these lines of code if you haven't done so already.
'Illuminate\Html\HtmlServiceProvider'
'Form'=> 'Illuminate\Html\FormFacade', 'HTML'=> 'Illuminate\Html\HtmlFacade', In place of it, you should install the Laravel collective package. To install that, replace the illuminate/html package with this:
"laravelcollective/html": "5.2.*" Then in your config/app.php file, add this to your providers array:
Collective\Html\HtmlServiceProvider::class and this to your aliases array:
@talam0nal, your answer worked for me.Thanks,just learning the framework,its learning curve is much easier compared to some I have tried out in the past.
Dear all i have used the singleton() by replacing the bindShared() in whole HtmlServiceProvider.php and its working for me so just try that and the error definitely goes.....
timgantercommented on 22 Dec 2015