i'm trying to use this link http://laravelcollective.com to install HTML and Form helper on laravel 5, after install that with composer like with
"require": {
"laravelcollective/html": "~5.0"
}
and update composer i'm add this lines on app.php file:
'providers' => [
/* -------- */
'Collective\Html\HtmlServiceProvider',
],
'aliases' => [
/* -------- */
'Form' => 'Collective\Html\FormFacade',
'Html' => 'Collective\Html\HtmlFacade',
],
and use from Html on view like with :
{{!! HTML::image(Captcha::img(), 'Captcha image',array('id'=>'captcha')) !!}}
I get this error:
Class 'HTML' not found