Guest User

Untitled

a guest
Jun 18th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <h1>Editing <%=h @admin.first_name%></h1>
  2.  
  3. <% form_for :customer, @admin, :url => { :action => 'update' } do |f| %>
  4. <%= f.error_messages %>
  5.  
  6. <p>
  7. <%= f.label :first_name %><br />
  8. <%= f.text_field :first_name %>
  9. </p>
  10. <p>
  11. <%= f.label :last_name %><br />
  12. <%= f.text_field :last_name %>
  13. </p>
  14. <p>
  15. <%= f.submit 'Update' %>
  16. </p>
  17. <% end %>
Add Comment
Please, Sign In to add comment