Hi, I have a quick question regarding twig and forms: Let's say my yaml is as below for a frontend form:
name: test
type: radio
options:
foo1: bar1
foo2: bar2
foo3: bar3
foo4: bar4
In the mail sent with data.html.twig, I can retrieve the 'foo' selected with {{ string(form.value(test)|e) }} but I would like to display instead the matching value of 'bar'.
Any idea?