diff --git a/app/Template/user_view/profile.php b/app/Template/user_view/profile.php
index 486ca428e..d931e3e73 100644
--- a/app/Template/user_view/profile.php
+++ b/app/Template/user_view/profile.php
@@ -6,6 +6,7 @@
= t('Login:') ?> = $this->text->e($user['username']) ?>
= t('Full Name:') ?> = $this->text->e($user['name']) ?: t('None') ?>
= t('Email:') ?> = $this->text->e($user['email']) ?: t('None') ?>
+ = $this->hook->render('template:user:show:profile:info', array('user' => $user)) ?>
diff --git a/app/Template/user_view/show.php b/app/Template/user_view/show.php
index e57fd4cd6..7f847f650 100644
--- a/app/Template/user_view/show.php
+++ b/app/Template/user_view/show.php
@@ -6,6 +6,7 @@
= t('Full Name:') ?> = $this->text->e($user['name']) ?: t('None') ?>
= t('Email:') ?> = $this->text->e($user['email']) ?: t('None') ?>
= t('Status:') ?> = $user['is_active'] ? t('Active') : t('Inactive') ?>
+ = $this->hook->render('template:user:show:profile:info', array('user' => $user)) ?>