diff --git a/src/Form/FacetForm.php b/src/Form/FacetForm.php
index f9ca27e..1eaf72e 100644
--- a/src/Form/FacetForm.php
+++ b/src/Form/FacetForm.php
@@ -6,6 +6,7 @@ use Drupal\Component\Utility\Html;
 use Drupal\Core\Entity\EntityForm;
 use Drupal\Core\Entity\EntityTypeManagerInterface;
 use Drupal\Core\Form\FormStateInterface;
+use Drupal\facets\FacetSource\FacetSourcePluginManager;
 use Drupal\facets\Plugin\facets\facet_source\SearchApiDisplay;
 use Drupal\facets\FacetSource\SearchApiFacetSourceInterface;
 use Drupal\search_api\Plugin\search_api\display\ViewsRest;
@@ -44,6 +45,13 @@ class FacetForm extends EntityForm {
    */
   protected $widgetPluginManager;
 
+  /**
+   * The plugin manager for facet sources.
+   *
+   * @var \Drupal\facets\FacetSource\FacetSourcePluginManager
+   */
+  protected $facetSourcePluginManager;
+
   /**
    * Constructs an FacetDisplayForm object.
    *
@@ -54,10 +62,11 @@ class FacetForm extends EntityForm {
    * @param \Drupal\facets\Widget\WidgetPluginManager $widget_plugin_manager
    *   The plugin manager for widgets.
    */
-  public function __construct(EntityTypeManagerInterface $entity_type_manager, ProcessorPluginManager $processor_plugin_manager, WidgetPluginManager $widget_plugin_manager) {
+  public function __construct(EntityTypeManagerInterface $entity_type_manager, ProcessorPluginManager $processor_plugin_manager, WidgetPluginManager $widget_plugin_manager, FacetSourcePluginManager $facetSourcePluginManager) {
     $this->entityTypeManager = $entity_type_manager;
     $this->processorPluginManager = $processor_plugin_manager;
     $this->widgetPluginManager = $widget_plugin_manager;
+    $this->facetSourcePluginManager = $facetSourcePluginManager;
   }
 
   /**
@@ -67,7 +76,8 @@ class FacetForm extends EntityForm {
     return new static(
       $container->get('entity_type.manager'),
       $container->get('plugin.manager.facets.processor'),
-      $container->get('plugin.manager.facets.widget')
+      $container->get('plugin.manager.facets.widget'),
+      $container->get('plugin.manager.facets.facet_source')
     );
   }
 
@@ -124,6 +134,13 @@ class FacetForm extends EntityForm {
     /** @var \Drupal\facets\FacetInterface $facet */
     $facet = $this->entity;
 
+    foreach ($this->facetSourcePluginManager->getDefinitions() as $facet_source_id => $definition) {
+      $facet_sources[$definition['id']] = !empty($definition['label']) ? $definition['label'] : $facet_source_id;
+    }
+    $form['facet_source'] = [
+      '#markup' => t('Facet source: %facet_source', ['%facet_source' => $facet_sources[$facet->getFacetSourceId()]]),
+    ];
+
     $widget_options = [];
     foreach ($this->widgetPluginManager->getDefinitions() as $widget_id => $definition) {
       $widget_options[$widget_id] = !empty($definition['label']) ? $definition['label'] : $widget_id;
diff --git a/tests/src/Functional/IntegrationTest.php b/tests/src/Functional/IntegrationTest.php
index 9f6d668..b209629 100644
--- a/tests/src/Functional/IntegrationTest.php
+++ b/tests/src/Functional/IntegrationTest.php
@@ -1051,6 +1051,11 @@ class IntegrationTest extends FacetsTestBase {
     // Make sure that the redirection back to the overview was successful and
     // the edited facet is shown on the overview page.
     $this->assertSession()->pageTextContains('Facet ' . $facet_name . ' has been updated.');
+
+    $facet_edit_page = '/admin/config/search/facets/' . $facet_id . '/edit';
+    $this->drupalGet($facet_edit_page);
+    $this->assertSession()->statusCodeEquals(200);
+    $this->assertSession()->pageTextContains('Facet source: View Search API Test Fulltext search view, display Page');
   }
 
   /**
