わかりましたので、2 つのオプションを含む選択フォームがあります
$builder->add('type', 'choice', array(
'label' => 'User type',
'choices' => array('1' => 'Customer', '2' => 'Supplier'),
'expanded' => true,
'multiple' => false,
'required' => false,
));
そして、小枝を使用してビュー内のオプションを分割し、次のようなものを取得したいと考えています:
{{ form_widget(form.type/choice_1/) }}
some html stuf
{{ form_widget(form.type/choice_2/) }}
何か提案はありますか?