diff --git a/core/modules/forum/src/Form/ContainerForm.php b/core/modules/forum/src/Form/ContainerForm.php
index b7f62fc..e8c9683 100644
--- a/core/modules/forum/src/Form/ContainerForm.php
+++ b/core/modules/forum/src/Form/ContainerForm.php
@@ -29,6 +29,10 @@ public function form(array $form, FormStateInterface $form_state) {
     // Build the bulk of the form from the parent forum form.
     $form = parent::form($form, $form_state, $taxonomy_term);
 
+    if ($taxonomy_term->isNew()) {
+      $form['#title'] = $this->t('Add Container');
+    }
+
     // Set the title and description of the name field.
     $form['name']['#title'] = $this->t('Container name');
     $form['name']['#description'] = $this->t('Short but meaningful name for this collection of related forums.');
diff --git a/core/modules/forum/src/Form/ForumForm.php b/core/modules/forum/src/Form/ForumForm.php
index 1a517c0..459c4af 100644
--- a/core/modules/forum/src/Form/ForumForm.php
+++ b/core/modules/forum/src/Form/ForumForm.php
@@ -38,6 +38,10 @@ public function form(array $form, FormStateInterface $form_state) {
     // Build the bulk of the form from the parent taxonomy term form.
     $form = parent::form($form, $form_state, $taxonomy_term);
 
+    if ($taxonomy_term->isNew()) {
+      $form['#title'] = $this->t('Add Forum');
+    }
+
     // Set the title and description of the name field.
     $form['name']['#title'] = $this->t('Forum name');
     $form['name']['#description'] = $this->t('Short but meaningful name for this collection of threaded discussions.');
