Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
You can use the Form Type Extension
use Symfony\Component\Form\AbstractTypeExtension;
use Symfony\Component\Form\FormBuilderInterface;
class BundleFormTypeExtension extends AbstractTypeExtension
{
public static function getExtendedTypes(): iterable
{
return [BundleFormType::class];
}
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->remove('someField');
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question