'Deblan\Bundle\BlogBundle\Model\Category', 'name' => 'category', ); /** * {@inheritdoc} */ public function buildForm(FormBuilderInterface $builder, array $options) { $builder->add( 'Title', 'text', array( 'label' => 'Titre', 'constraints' => array( new NotBlank(), ), ) ); $builder->add('Description'); $builder->add( 'Active', 'checkbox', array( 'label' => 'En ligne', ) ); } }