Skip to content

Instantly share code, notes, and snippets.

@wake
Last active December 20, 2017 11:52
Show Gist options
  • Save wake/69dffd6ccccecfe984c8e34eed6ceec2 to your computer and use it in GitHub Desktop.
Save wake/69dffd6ccccecfe984c8e34eed6ceec2 to your computer and use it in GitHub Desktop.
{# HTML + Twig 樣板檔案 - 先單獨顯示 submit / reset,再用 form_reset 處理其他的 #}
{{ form_start(form) }}
<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_rest(form) }}
{{ form_close(form) }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment