Is there some easy way how put raw HTML tag to label? I have this:
{{ Form::label(\'firstName\', \'First name *\', array(\'class\' =>
Using sprintf in a macro is much faster than redecoding:
sprintf
macro
Form::macro('rawLabel', function($name, $value = null, $options = array()) { $label = Form::label($name, '%s', $options); return sprintf($label, $value); });