Skip to content

Instantly share code, notes, and snippets.

@wake
Last active December 20, 2017 11:50
Show Gist options
  • Save wake/8fba710ac68ca4a4e903968e57da659c to your computer and use it in GitHub Desktop.
Save wake/8fba710ac68ca4a4e903968e57da659c to your computer and use it in GitHub Desktop.
{# 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