It's better to use class rather than style attribute.
<?php// you can use this latte{input example, rows =>5,class=>'form-control orSomeOtherClass'}// or in form init$form->addTextArea('example','Example')->setAttribute('rows',5)->getControlPrototype()->addClass('form-control');?>
It's better to use class rather than style attribute.
<?php// you can use this latte{input example, rows =>5,class=>'form-control orSomeOtherClass'}// or in form init$form->addTextArea('example','Example')->setAttribute('rows',5)->getControlPrototype()->addClass('form-control');?>
getControlPrototype() and addClass() is what I needed. Thanks!