diff --git a/layout_styles.module b/layout_styles.module
index 842af58..9faf620 100644
--- a/layout_styles.module
+++ b/layout_styles.module
@@ -5,6 +5,24 @@
  * Layouts Styles module file.
  */
 
+use Drupal\Core\Routing\RouteMatchInterface;
+
+/**
+ * Implements hook_help().
+ */
+function layout_styles_help($route_name, RouteMatchInterface $route_match) {
+  switch ($route_name) {
+    case 'help.layout_styles':
+      $output = '';
+      $output .= '<h3>' . t('Layout Styles') . '</h3>';
+      $output .= '<p>' . t('Layout Styles allows site builders to add a image which is added as a
+      background image to layout builder sections.
+      In addition to this it also provides a easy way to add a  class to the layout
+      builder sections.') . '</p>';
+      return $output;
+  }
+}
+
 /**
  * Implements hook_layout_alter().
  */
