Error: BadMethodCallException in FormBuilder.php line 1208: Method hasErrors does not exist.
So I have installed Laravelcollective as usual, and most aspects are working.
My composer.json
"laravelcollective/html": "~5.0",
And in my config/app.php providers
Collective\Html\HtmlServiceProvider::class,
And aliases
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
However, I am getting the error:
BadMethodCallException in FormBuilder.php line 1208: Method hasErrors does not exist.
Not too sure what is going on here. My errors in my html look like this.
{{ Form::hasErrors('name') }}
{{ Form::errors('name') }}
Do i need to install a seperate package for these?