add('label') ->add('themeType') ->add('date', null, [ 'html5' => true, 'widget' => 'single_text', ]) ->add('persons') ->add('content', null, [ 'attr' => ['rows' => 7], ]) ->add('comment', null, [ 'attr' => ['rows' => 7], ]) ->add('feedback', null, [ 'attr' => ['rows' => 7], ]) ; } public function configureOptions(OptionsResolver $resolver): void { $resolver->setDefaults([ 'data_class' => Conference::class, ]); } }