Edit <%= resource_name.to_s.humanize %>
<%= form_for(resource,
as: resource_name,
url: registration_path(resource_name),
html: {
method: :put,
class: "bg-white mb-4 px-8 pt-6 pb-8 rounded shadow-md"
}
) do |f| %>
<%#= render "devise/shared/error_messages", resource: resource %>
<%= devise_error_messages! %>
<%= f.label :email %>
<%= f.email_field :email,
autofocus: true,
autocomplete: "email" %>
<% 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: "new-password" %>
<% if @minimum_password_length %>
<%= @minimum_password_length %> characters minimum
<% end %>
<%= f.label :password_confirmation %>
<%= f.password_field :password_confirmation,
autocomplete: "new-password"
%>
<%= f.label :current_password %> (we need your current password to confirm your changes)
<%= f.password_field :current_password,
autocomplete: "current-password"
%>
<%= f.submit "Update" %>
<% end %>
Cancel My Account
Unhappy? <%= button_to "Cancel my account", registration_path(resource_name), data: { confirm: "Are you sure?" }, method: :delete %>
<%= link_to "Back", :back %>