19 lines
321 B
Text
19 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>
|
||
|
|
|