Created
July 23, 2015 19:34
-
-
Save simshaun/cb4cdc870c4632f371e5 to your computer and use it in GitHub Desktop.
Symfony2 form help text
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
twig: | |
form: | |
resources: | |
- "Form/form_theme.html.twig" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{ form_row(form.title, {help: 'For reference only.'}) }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% extends 'form_div_layout.html.twig' %} | |
{% block form_row -%} | |
<div class="form-group {{ container_class|default(false) }}"> | |
{{ form_label(form) }} | |
{{ form_errors(form) }} | |
{{ form_widget(form) }} | |
{% if help|default(false) %} | |
<div class="help-block">{{ help }}</div> | |
{% endif %} | |
</div> | |
{%- endblock form_row %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment