diff --git a/core/modules/path/path.module b/core/modules/path/path.module
index 8721d5e..47b63ee 100644
--- a/core/modules/path/path.module
+++ b/core/modules/path/path.module
@@ -57,20 +57,17 @@ function path_permission() {
 function path_form_node_form_alter(&$form, $form_state) {
   $node = $form_state['controller']->getEntity();
   if ($node->hasField('path') && $node->get('path')->access('edit')) {
-    $form['path_settings'] = array(
-      '#type' => 'details',
-      '#title' => t('URL path settings'),
-      '#open' => !empty($form['path']['widget'][0]['alias']['#value']),
-      '#group' => 'advanced',
-      '#attributes' => array(
-        'class' => array('path-form'),
-      ),
-      '#attached' => array(
-        'library' => array('path/drupal.path'),
-      ),
-      '#weight' => 30,
-    );
-    $form['path']['#group'] = 'path_settings';
+    path_settings_form_element($form);
+  }
+}
+
+/**
+ * Implements hook_form_BASE_FORM_ID_alter() for user_form().
+ */
+function path_form_user_form_alter(&$form, $form_state) {
+  $user = $form_state['controller']->getEntity();
+  if ($user->hasField('path') && $user->get('path')->access('edit')) {
+    path_settings_form_element($form);
   }
 }
 
@@ -78,7 +75,7 @@ function path_form_node_form_alter(&$form, $form_state) {
  * Implements hook_entity_base_field_info().
  */
 function path_entity_base_field_info(EntityTypeInterface $entity_type) {
-  if ($entity_type->id() === 'taxonomy_term' || $entity_type->id() === 'node') {
+  if ($entity_type->id() === 'taxonomy_term' || $entity_type->id() === 'node' || $entity_type->id() === 'user') {
     $fields['path'] = FieldDefinition::create('path')
       ->setLabel(t('URL alias'))
       ->setTranslatable(TRUE)
@@ -92,3 +89,23 @@ function path_entity_base_field_info(EntityTypeInterface $entity_type) {
     return $fields;
   }
 }
+
+/**
+ * Returns form element for path settings.
+ */
+function path_settings_form_element(&$form) {
+  $form['path_settings'] = array(
+    '#type' => 'details',
+    '#title' => t('URL path settings'),
+    '#open' => !empty($form['path']['widget'][0]['alias']['#value']),
+    '#group' => 'advanced',
+    '#attributes' => array(
+      'class' => array('path-form'),
+    ),
+    '#attached' => array(
+      'library' => array('path/drupal.path'),
+    ),
+    '#weight' => 30,
+  );
+  $form['path']['#group'] = 'path_settings';
+}
