laravel 4: Jak wstawić surowy kod HTML do etykiety?

Czy jest jakiś prosty sposób na umieszczenie tagu surowego HTML w etykiecie? Mam to:

{{ Form::label('firstName', 'First name <em>*</em>', array('class' => 'input_tag')) }}

i produkuje:

<label class="input_tag" for="firstName">First Name &lt;em&gt;*&lt;/em&gt;</label>

ALE tag EM nie jest interpretowany tak, jak być powinien. Chcę:

<label class="input_tag" for="firstName">First Name <em>*</em></label>

questionAnswers(7)

yourAnswerToTheQuestion