Я пытаюсь реализовать что-то вроде этого:
<div>
<input type="checkbox" name="checkbox" id="checkbox_id" />
<label for="checkbox_id">I agree to the <a href="/tos">Terms of Service</a></label>
</div>
Ближайший я пришел реализовать это через:
<div>
{{ form_widget(form.agreeWithTos) }}
<label for="{{ form.agreeWithTos.vars.id }}">I agree to the <a href="#">Terms of Service</a></label>
</div>
Есть ли лучший способ? Необходимо указать {{form.agreeWithTos.vars.id}} неэлегантно.:)