diff --git a/app/views/management/_account_info.html.erb b/app/views/management/_account_info.html.erb
index 7264d400e..7941156f1 100644
--- a/app/views/management/_account_info.html.erb
+++ b/app/views/management/_account_info.html.erb
@@ -1,23 +1,25 @@
-
- <% if current_user %>
- <%= t("management.account_info.managed_user_title") %>
- <% end %>
+<% if current_user.document_number.present? %>
+
+ <% if current_user.level_two_or_three_verified? %>
+ <%= t("management.account_info.identified_label") %>
+ <% end %>
- <% if account.username.present? %>
- <%= t("management.username_label") %>
- <%= account.username %>
- <% end %>
+ <% if current_user.username.present? %>
+ <%= t("management.account_info.username_label") %>
+ <%= current_user.username %>
+ <% end %>
- <% if account.email.present? %>
- <%= t("management.email_label") %>
- <%= account.email %>
- <% end %>
+ <% if current_user.email.present? %>
+ <%= t("management.account_info.email_label") %>
+ <%= current_user.email %>
+ <% end %>
- <%= t("management.document_type_label") %>
- <%= humanize_document_type(account.document_type) %>
+ <%= t("management.account_info.document_type_label") %>
+ <%= humanize_document_type(current_user.document_type) %>
- <%= t("management.document_number") %>
- <%= account.document_number %>
+ <%= t("management.account_info.document_number_label") %>
+ <%= current_user.document_number %>
- <%= link_to(t("management.account_info.logout"), management_session_path, method: :delete) %>
-
+ <%= link_to(t("management.account_info.logout"), logout_management_users_path, method: :delete) %>
+
+<% end %>
diff --git a/app/views/management/document_verifications/invalid_document.html.erb b/app/views/management/document_verifications/invalid_document.html.erb
index d5e1b78fe..ee7120c9b 100644
--- a/app/views/management/document_verifications/invalid_document.html.erb
+++ b/app/views/management/document_verifications/invalid_document.html.erb
@@ -1,5 +1,3 @@
-<%= render 'management/account_info.html', account: @document_verification %>
-
<%= t("management.document_verifications.not_in_census") %>
diff --git a/app/views/management/document_verifications/new.html.erb b/app/views/management/document_verifications/new.html.erb
index be2d3a1c5..f52dfe9f5 100644
--- a/app/views/management/document_verifications/new.html.erb
+++ b/app/views/management/document_verifications/new.html.erb
@@ -1,5 +1,3 @@
-<%= render 'management/account_info.html', account: @document_verification %>
-
<%= t("management.document_verifications.please_check_account_data") %>
diff --git a/app/views/management/document_verifications/verified.html.erb b/app/views/management/document_verifications/verified.html.erb
index 99ddb4202..ab788a89f 100644
--- a/app/views/management/document_verifications/verified.html.erb
+++ b/app/views/management/document_verifications/verified.html.erb
@@ -1,5 +1,3 @@
-<%= render 'management/account_info.html', account: @document_verification %>
-
<%= t("management.document_verifications.already_verified") %>
diff --git a/app/views/management/email_verifications/new.html.erb b/app/views/management/email_verifications/new.html.erb
index b8094a2b1..03828c873 100644
--- a/app/views/management/email_verifications/new.html.erb
+++ b/app/views/management/email_verifications/new.html.erb
@@ -1,5 +1,3 @@
-<%= render 'management/account_info.html', account: @email_verification %>
-
<%= t("management.email_verifications.document_found_in_census") %>
diff --git a/app/views/management/email_verifications/sent.html.erb b/app/views/management/email_verifications/sent.html.erb
index cc368c0db..eb0860530 100644
--- a/app/views/management/email_verifications/sent.html.erb
+++ b/app/views/management/email_verifications/sent.html.erb
@@ -1,5 +1,3 @@
-<%= render 'management/account_info.html', account: @email_verification %>
-
<%= t("management.email_verifications.email_sent_instructions") %>
diff --git a/app/views/management/proposals/index.html.erb b/app/views/management/proposals/index.html.erb
index c53fba018..f6044265c 100644
--- a/app/views/management/proposals/index.html.erb
+++ b/app/views/management/proposals/index.html.erb
@@ -1,5 +1,3 @@
-<%= render 'management/account_info.html', account: current_user %>
-
<%= render 'admin/shared/proposal_search', url: management_proposals_path %>
diff --git a/app/views/management/users/new.html.erb b/app/views/management/users/new.html.erb
index 1188b7872..226210695 100644
--- a/app/views/management/users/new.html.erb
+++ b/app/views/management/users/new.html.erb
@@ -1,5 +1,3 @@
-<%= render 'management/account_info.html', account: @user %>
-
<%= t("management.users.create_user_info") %>
<%= render 'management/user_permissions',
diff --git a/app/views/management/users/show.html.erb b/app/views/management/users/show.html.erb
index 48e563e36..11cf05219 100644
--- a/app/views/management/users/show.html.erb
+++ b/app/views/management/users/show.html.erb
@@ -1,5 +1,3 @@
-<%= render 'management/account_info.html', account: @user %>
-
<%= t("management.users.create_user_success_html", email: @user.email) %>
<%= render 'management/user_permissions',