<div class=“row”>

<div class="col-lg-4 col-md-6 ml-auto mr-auto">
  <%- if options[:metatags] %>
  <h2 class="text-center"><%%= title("Edit #{resource_name.to_s.humanize}") %></h2>
  <% else -%>
  <h2 class="text-center">Edit <%%= resource_name.to_s.humanize %></h2>
  <%- end %>
  <hr>
  <%%= form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f| %>
    <%%= render "devise/shared/error_messages", resource: resource %>
    <div class="form-group">
      <%%= f.label :email %><br />
      <%%= f.email_field :email, class: 'form-control'  %>
    </div>

    <%% if devise_mapping.confirmable? && resource.pending_reconfirmation? %>
      <div>Currently waiting confirmation for: <%%= resource.unconfirmed_email %></div>
    <%% end %>

    <div class="form-group">
      <%%= f.label :password %> <i>(Leave blank if you don't want to change it)</i><br />
      <%%= f.password_field :password, autocomplete: 'off', class: 'form-control'  %>
    </div>
    <div class="form-group">
      <%%= f.label :password_confirmation %><br />
      <%%= f.password_field :password_confirmation, autocomplete: 'off', class: 'form-control'  %>
    </div>
    <div class="form-group">
      <%%= f.label :current_password %> <i>(We need your current password to confirm your changes)</i><br />
      <%%= f.password_field :current_password, autocomplete: 'off', class: 'form-control'  %>
    </div>
    <div class="form-group">
      <%%= f.submit "Update", class: 'btn btn-lg btn-block btn-primary' %>
    </div>
  <%% end %>
  <hr>
  <h2>Cancel my account</h2>
  <p>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 %></p>
  <%%= link_to "Back", :back %>
  <hr>
</div>

</div>