Created
July 13, 2020 14:15
-
-
Save LucasKuhn/29432a584b295d0ae027fa9b4aef2b21 to your computer and use it in GitHub Desktop.
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_with(model: post, local: true) do |form| %> | |
<div class="field"> | |
<%= form.label :title %> | |
<%= form.text_field :title %> | |
</div> | |
<div class="field"> | |
<%= form.label :content %> | |
<%= form.text_area :content %> | |
</div> | |
<div class="actions"> | |
<%= form.submit %> | |
</div> | |
<% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment