public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add('name', TextType::class, [
'constraints' => [
new NotBlank(),
new Length(
[
'min' => 2,
'max' => 255,
]
),
],
]);
}