Extra fields for Symfony2 forms.
Add this bundle to your composer.json
file:
{
"require": {
"napas/form-extra-bundle": "~0.1"
}
}
Register the bundle in app/AppKernel.php
:
// app/AppKernel.php
public function registerBundles()
{
return array(
// ...
new Napas\FormExtraBundle\NapasFormExtraBundle(),
);
}
Done!
##US States choice field
$builder->add('State', 'us_states');