diff --git a/src/Form/EntityBrowserEditForm.php b/src/Form/EntityBrowserEditForm.php
index 1a9a5bc..8ba1dba 100644
--- a/src/Form/EntityBrowserEditForm.php
+++ b/src/Form/EntityBrowserEditForm.php
@@ -450,4 +450,18 @@ class EntityBrowserEditForm extends EntityForm {
     }
   }
 
+  /**
+   * {@inheritdoc}
+   */
+  public function save(array $form, FormStateInterface $form_state) {
+    $status = $this->entity->save();
+
+    if ($status == SAVED_UPDATED) {
+      $this->messenger()->addMessage($this->t('The entity browser %name has been updated.', ['%name' => $this->entity->label()]));
+    }
+    elseif ($status == SAVED_NEW) {
+      $this->messenger()->addMessage($this->t('The entity browser %name has been added. Now you may configure the widgets you would like to use.', ['%name' => $this->entity->label()]));
+    }
+  }
+
 }
diff --git a/src/Form/WidgetsConfig.php b/src/Form/WidgetsConfig.php
index 1af3a16..bdb6d90 100644
--- a/src/Form/WidgetsConfig.php
+++ b/src/Form/WidgetsConfig.php
@@ -220,7 +220,11 @@ class WidgetsConfig extends EntityForm {
       $widget->setWeight($table[$uuid]['weight']);
       $widget->setLabel($table[$uuid]['label']);
     }
-    $entity_browser->save();
+    $status = $entity_browser->save();
+
+    if ($status == SAVED_UPDATED) {
+      $this->messenger()->addMessage($this->t('The entity browser %name has been updated.', ['%name' => $this->entity->label()]));
+    }
   }
 
 }
