By default, input field labels are escaped with Zend_View_Helper_FormLabel. However, you can easily disable this:
$yourTextInputElement->getDecorator('label')->setOption('escape', false);
This way you can use tags, for example. $yourTextInputElement->setLabel('First <br/> name');.
source
share