When I try to do this:
{{ Form::label("nomecampo", "Descrição<em>*</em>", array("class" => "entrada")) }}
The tag enters the tag but is not interpreted correctly. See:
<label class="entrada" for="nomecampo">Descrição<em>*</em></label>
When I try to do this:
{{ Form::label("nomecampo", "Descrição<em>*</em>", array("class" => "entrada")) }}
The tag enters the tag but is not interpreted correctly. See:
<label class="entrada" for="nomecampo">Descrição<em>*</em></label>
You should use the HTML :: decode () method to do this, try the following:
{{ HTML::decode(Form::label("nomecampo", "Descrição<em>*</em>", array("class" => "entrada")) ) }};