10 lines
276 B
Text
10 lines
276 B
Text
|
<div class='container'>
|
||
|
<h4>Edit author</h4>
|
||
|
<%= form_for @author do |f|%>
|
||
|
<%= f.label :first_name %>
|
||
|
<%= f.text_field :first_name %>
|
||
|
<%= f.label :last_name %>
|
||
|
<%= f.text_field :last_name %>
|
||
|
<%= f.submit 'Save changes', class: 'btn' %>
|
||
|
<%end%>
|
||
|
</div>
|