al13ntown/app/views/blogs/edit.html.erb
2026-08-24 20:12:41 +00:00

18 lines
321 B
Text

<section class="articlenew"><h3>Edit your blog!</h3>
<%= form_with model: [@profile, @blog] do |form| %>
<%= form.label :title %><br />
<%= form.text_area :title %>
<p>
<p>
<%= form.label :topic %><br>
<%= form.rich_text_area :topic %>
</p>
<%= form.submit %>
<% end %>
</section>