d3bug3r
d3bug3r

Reputation: 2586

Laravel 5.1 collective template issue

I having issues with laravel 5.1 template. Following are the screenshot from the browser and code editor:

enter image description here

enter image description here

enter image description here

Following are the code I add to config\app.php

Providers:
 Collective\Html\HtmlServiceProvider::class

aliases:
 'Form'      => Collective\Html\FormFacade::class,
 'Html'      => Collective\Html\HtmlFacade::class

And yet I cant render proper form. Thanks

Upvotes: 1

Views: 46

Answers (1)

aldrin27
aldrin27

Reputation: 3407

It should be:

{!! Form::label('email', 'E-mail Address') !!}

Upvotes: 1

Related Questions