pg_layout/app/views/devise/registrations/edit.html.erb
<h2><%= t(".title", resource: devise_i18n_fix_model_name_case(resource.model_name.human, i18n_key: "registrations.edit.title")) %></h2>
<%= pg_form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f| %>
<%= f.mensajes_de_error %>
<div class="form-inputs">
<%= f.input :email, required: true, autofocus: true %>
<%= f.input :nombre, required: true %>
<%= f.input :apellido, required: true %>
<% if devise_mapping.confirmable? && resource.pending_reconfirmation? %>
<p><%= t(".currently_waiting_confirmation_for_email", email: resource.unconfirmed_email) %></p>
<% end %>
<%= f.input :password,
hint: t(".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: t(".we_need_your_current_password_to_confirm_your_changes"),
required: true,
input_html: { autocomplete: "current-password" } %>
</div>
<div class="form-actions">
<%= f.button :submit, t(".update") %>
</div>
<% end %>
<style type="text/css" media="screen">
form {
max-width: 22em;
}
</style>