Last active
December 20, 2017 11:52
-
-
Save wake/69dffd6ccccecfe984c8e34eed6ceec2 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 樣板檔案 - 先單獨顯示 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