In choiceType field I have parameter - choice label
'choice_label' => function ($pay, $key, $index) {
return "<b>".$pay->getName()."</b><br />";
},
And render function of fields in twig:
{{form_widget(field)}}
{{form_errors(field)}}
Of course I want to render getName in bold characters,
I have try with twig autoescape and {{form_widget(field)|raw}} - without success