'Deblan\Bundle\BlogBundle\Model\Category', 'name' => 'category', 'csrf_protection' => false, ); /** * {@inheritdoc} */ public function buildForm(FormBuilderInterface $builder, array $options) { $builder->add( 'Title', 'text', array( 'required' => false, 'label' => 'Titre', ) ); $builder->add( 'Active', 'choice', array( 'required' => false, 'choices' => array( 'bool.both' => 'Anyway', 'bool.true' => 'True', 'bool.false' => 'False', ) ) ); } }