<%= translate '.title', resource: resource.model_name.human %>

<%= simple_form_for resource, as: resource_name, url: registration_path(resource_name), html: { method: :put } do |f| %> <%= f.error_notification %>
<%= f.input :email, required: true, autofocus: true %> <% if devise_mapping.confirmable? && resource.pending_reconfirmation? %>

<%= translate '.currently_waiting_confirmation_for_email', email: resource.unconfirmed_email %>

<% end %> <%= f.input :password, hint: translate('.leave_blank_if_you_don_t_want_to_change_it'), required: false input_html: { autocomplete: 'new-password' } %> <%= f.input :password_confirmation, required: false, input_html: { autocomplete: 'new-password' } %> <%= f.input :current_password, hint: translate('.we_need_your_current_password_to_confirm_your_changes'), required: true, input_html: { autocomplete: 'current-password' } %>
<%= f.button :submit, translate('.update') %>
<% end %>

<%= translate '.cancel_my_account' %>

<%= translate '.unhappy' %> <%= link_to translate('.cancel_my_account'), registration_path(resource_name), data: { confirm: translate('.are_you_sure') }, method: :delete %>

<%= link_to translate('devise.shared.links.back'), :back %>