2014-12-09 17:17:11 +01:00
|
|
|
<h2>Edit <%= resource_name.to_s.humanize %></h2>
|
2015-01-15 00:39:34 +01:00
|
|
|
<%= render 'flash' %>
|
2014-12-09 17:17:11 +01:00
|
|
|
|
2015-02-09 11:58:43 +01:00
|
|
|
<%= f_form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => { :method => :put }) do |f| %>
|
|
|
|
<%= f.error_messages %>
|
2014-12-09 17:17:11 +01:00
|
|
|
|
2015-02-09 11:58:43 +01:00
|
|
|
<%= f.password_field :password %>
|
|
|
|
<%= f.password_field :password_confirmation %>
|
2014-12-09 17:17:11 +01:00
|
|
|
|
2015-02-09 11:58:43 +01:00
|
|
|
<%= f.password_field :current_password %>
|
2014-12-09 20:34:50 +01:00
|
|
|
|
2014-12-09 22:32:54 +01:00
|
|
|
<%= f.file_field :avatar %>
|
|
|
|
|
2015-02-09 11:58:43 +01:00
|
|
|
<%= f.submit "Update" %>
|
2014-12-09 17:17:11 +01:00
|
|
|
<% end %>
|