9 lines
232 B
Plaintext
9 lines
232 B
Plaintext
<%
|
|
content_for :section_title, "Profile"
|
|
%>
|
|
|
|
<p>Name: <%= current_admin.name %></p>
|
|
<p>email: <%= current_admin.email %></p>
|
|
<p>Role: <%= current_admin.role %></p>
|
|
<%= link_to('Edit', admin_edit_profile_path, { class: 'btn' }) %>
|