Edit <%= resource_name.to_s.humanize %>

<%= form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f| %> <%= render "devise/shared/error_messages", resource: resource %>
<%= f.label :email %>
<%= f.email_field :email %>
<%= f.label :name %>
<%= f.text_field :name %>
<%= f.label :password %> <%= _("(leave blank if you don't want to change it)") %>
<%= f.password_field :password %>
<%= f.label :password_confirmation %>
<%= f.password_field :password_confirmation %>
<%= f.label :current_password %> <%= _("(we need your current password to confirm your changes)") %>
<%= f.password_field :current_password %>
<%= f.submit _("Update"), class: "input_button" %>
<% end %>

<%= _('Cancel your account') %>

<%= _('Unhappy?') %> <%= link_to _("Cancel your account"), registration_path(resource_name), data: { confirm: _("Are you sure?") }, method: :delete %>.

<%= link_to _("Back"), :back %>