tabletop-companion/app/views/users/edit.html.erb

11 lines
303 B
Plaintext
Raw Permalink Normal View History

2024-05-30 08:07:54 +00:00
<% content_for :title, t(".edit_profile") %>
<h2><%= t(".edit_profile") %></h2>
<%= render partial: "users/form",
locals: { user: @user, button_text: t(".update_profile") } %>
2024-06-04 08:09:59 +00:00
<section class="inset">
<%= link_to t(".update_password"), edit_user_password_path(Current.user) %>
</section>