Last active
December 20, 2017 11:50
-
-
Save wake/8fba710ac68ca4a4e903968e57da659c to your computer and use it in GitHub Desktop.
This file contains 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
{# HTML + Twig - 依序處理 form.field, 並特別處理 submit / reset #} | |
{{ form_start(form) }} | |
{{ form_row(form.field_A) }} | |
{{ form_row(form.field_B) }} | |
{{ form_row(form.field_C) }} | |
<div class="form-group"> | |
<div class="col-sm-2"></div> | |
<div class="col-sm-10"> | |
{{ form_widget(form.submit) }} | |
{{ form_widget(form.reset) }} | |
</div> | |
</div> | |
{{ form_close(form) }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment