<%- if options[:metatags] %>

<%%= title("Edit #{resource_name.to_s.humanize}") %>

<% else -%>

Edit <%%= resource_name.to_s.humanize %>

<%- end %>
<%%= 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, class: 'form-control' %>
<%% if devise_mapping.confirmable? && resource.pending_reconfirmation? %>
Currently waiting confirmation for: <%%= resource.unconfirmed_email %>
<%% end %>
<%%= f.label :password %> (Leave blank if you don't want to change it)
<%%= f.password_field :password, autocomplete: 'off', class: 'form-control' %>
<%%= f.label :password_confirmation %>
<%%= f.password_field :password_confirmation, autocomplete: 'off', class: 'form-control' %>
<%%= f.label :current_password %> (We need your current password to confirm your changes)
<%%= f.password_field :current_password, autocomplete: 'off', class: 'form-control' %>
<%%= f.submit "Update", class: 'btn btn-lg btn-block btn-primary' %>
<%% end %>

Cancel my account

Unhappy? <%%= button_to 'Cancel my account', registration_path(resource_name), class: 'btn btn-danger', data: { confirm: 'Are you sure? You cannot undo this.' }, method: :delete %>

<%%= link_to "Back", :back %>