How to resize default text box in symfony2 formType class

How to resize default text box in symfony2 formType class

+4
source share
1 answer

You tried something like:

$builder->add('your_text_field', 'text', array( 'attr' => array('size' => '25'), )); 
+8
source

All Articles