diff --git a/core/modules/block/block.module b/core/modules/block/block.module
index 9d5f406..02ff398 100644
--- a/core/modules/block/block.module
+++ b/core/modules/block/block.module
@@ -238,12 +238,12 @@ function template_preprocess_block(&$variables) {
   $variables['plugin_id'] = $variables['elements']['#plugin_id'];
   $variables['base_plugin_id'] = $variables['elements']['#base_plugin_id'];
   $variables['derivative_plugin_id'] = $variables['elements']['#derivative_plugin_id'];
-  $variables['label'] = !empty($variables['configuration']['label_display']) ? $variables['configuration']['label'] : '';
+  $variables['title'] = !empty($variables['configuration']['label_display']) ? $variables['configuration']['label'] : '';
   $variables['content'] = $variables['elements']['content'];
   // A block's label is configuration: it is static. Allow dynamic labels to be
   // set in the render array.
   if (isset($variables['elements']['content']['#title']) && !empty($variables['configuration']['label_display'])) {
-    $variables['label'] = $variables['elements']['content']['#title'];
+    $variables['title'] = $variables['elements']['content']['#title'];
   }
 
   // Create a valid HTML ID and make sure it is unique.
@@ -252,8 +252,8 @@ function template_preprocess_block(&$variables) {
   }
 
   // Proactively add aria-describedby if possible to improve accessibility.
-  if ($variables['label'] && isset($variables['attributes']['role'])) {
-    $variables['title_attributes']['id'] = Html::getUniqueId($variables['label']);
+  if ($variables['title'] && isset($variables['attributes']['role'])) {
+    $variables['title_attributes']['id'] = Html::getUniqueId($variables['title']);
     $variables['attributes']['aria-describedby'] = $variables['title_attributes']['id'];
   }
 
diff --git a/core/modules/block/templates/block.html.twig b/core/modules/block/templates/block.html.twig
index 236b3cf..2a17e80 100644
--- a/core/modules/block/templates/block.html.twig
+++ b/core/modules/block/templates/block.html.twig
@@ -36,8 +36,8 @@
 #}
 <div{{ attributes }}>
   {{ title_prefix }}
-  {% if label %}
-    <h2{{ title_attributes }}>{{ label }}</h2>
+  {% if title %}
+    <h2{{ title_attributes }}>{{ title }}</h2>
   {% endif %}
   {{ title_suffix }}
   {% block content %}
diff --git a/core/themes/bartik/templates/block.html.twig b/core/themes/bartik/templates/block.html.twig
index 31a95c0..4575a25 100644
--- a/core/themes/bartik/templates/block.html.twig
+++ b/core/themes/bartik/templates/block.html.twig
@@ -44,8 +44,8 @@
 %}
 <div{{ attributes.addClass(classes) }}>
   {{ title_prefix }}
-  {% if label %}
-    <h2{{ title_attributes }}>{{ label }}</h2>
+  {% if title %}
+    <h2{{ title_attributes }}>{{ title }}</h2>
   {% endif %}
   {{ title_suffix }}
   {% block content %}
diff --git a/core/themes/classy/templates/block/block--search-form-block.html.twig b/core/themes/classy/templates/block/block--search-form-block.html.twig
index 0b162dd..6ff62ce 100644
--- a/core/themes/classy/templates/block/block--search-form-block.html.twig
+++ b/core/themes/classy/templates/block/block--search-form-block.html.twig
@@ -42,8 +42,8 @@
 %}
 <div{{ attributes.addClass(classes) }}>
   {{ title_prefix }}
-  {% if label %}
-    <h2{{ title_attributes }}>{{ label }}</h2>
+  {% if title %}
+    <h2{{ title_attributes }}>{{ title }}</h2>
   {% endif %}
   {{ title_suffix }}
   {% block content %}
diff --git a/core/themes/classy/templates/block/block.html.twig b/core/themes/classy/templates/block/block.html.twig
index a85c82c..de21320 100644
--- a/core/themes/classy/templates/block/block.html.twig
+++ b/core/themes/classy/templates/block/block.html.twig
@@ -40,8 +40,8 @@
 %}
 <div{{ attributes.addClass(classes) }}>
   {{ title_prefix }}
-  {% if label %}
-    <h2{{ title_attributes }}>{{ label }}</h2>
+  {% if title %}
+    <h2{{ title_attributes }}>{{ title }}</h2>
   {% endif %}
   {{ title_suffix }}
   {% block content %}
