add( 'label', TextType::class, [ 'label' => 'Libellé', 'required' => true, 'attr' => [ ], 'constraints' => [ new NotBlank(), ], ] ); $builder->add( 'url', TextType::class, [ 'label' => 'URL', 'required' => true, 'attr' => [ ], 'constraints' => [ new NotBlank(), ], ] ); } public function configureOptions(OptionsResolver $resolver): void { $resolver->setDefaults([ // Configure your form options here ]); } }