diff --git a/Forseti/app/pages/ProfileManage.tsx b/Forseti/app/pages/ProfileManage.tsx
index b7eac4239..557279b57 100644
--- a/Forseti/app/pages/ProfileManage.tsx
+++ b/Forseti/app/pages/ProfileManage.tsx
@@ -38,6 +38,7 @@ import {
IconMap2,
IconMapPin,
IconPhoneCall,
+ IconNumber,
} from '@tabler/icons-react';
import { createRef, useCallback, useEffect, useState } from 'react';
import { useApi } from '../hooks/api';
@@ -180,6 +181,7 @@ export const ProfileManage: React.FC = () => {
/>
}
label={i18n._t('Player title')}
description={i18n._t(
@@ -187,6 +189,13 @@ export const ProfileManage: React.FC = () => {
)}
{...form.getInputProps('title')}
/>
+ }
+ label={i18n._t('System ID')}
+ description={i18n._t('Numerical identifier of your user profile.')}
+ value={personId}
+ />
}