Skip to content

Instantly share code, notes, and snippets.

@LucasKuhn
Created July 13, 2020 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LucasKuhn/29432a584b295d0ae027fa9b4aef2b21 to your computer and use it in GitHub Desktop.
Save LucasKuhn/29432a584b295d0ae027fa9b4aef2b21 to your computer and use it in GitHub Desktop.
<%= 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