diff --git a/export/resources/views/components/_notification.antlers.html b/export/resources/views/components/_notification.antlers.html
index 73e1362e..b5888f13 100644
--- a/export/resources/views/components/_notification.antlers.html
+++ b/export/resources/views/components/_notification.antlers.html
@@ -1,8 +1,8 @@
{{#
@name Notification
@desc The notification component. Currently used in `resources/views/page_builder/_form.antlers.html`.
- @param* content The notification content.
@param* type The type of notification: `success`, `notice`, or `error`.
+ @param content The notification content.
@param class Add custom CSS classes.
#}}
@@ -18,6 +18,7 @@
)}}
{{ class }}
"
+ {{ slot:attributes }}
>
@@ -37,19 +38,23 @@
}}
-
- {{ content }}
-
+ {{ if content }}
+
+ {{ content }}
+
+ {{ /if }}
+
+ {{ slot }}
diff --git a/export/resources/views/page_builder/_form.antlers.html b/export/resources/views/page_builder/_form.antlers.html
index 04b5c4bd..3cfcd2fa 100644
--- a/export/resources/views/page_builder/_form.antlers.html
+++ b/export/resources/views/page_builder/_form.antlers.html
@@ -17,7 +17,8 @@
{{# Error notifications. #}}
-
+ {{ partial:components/notification type="error" }}
+ {{ slot:attributes }}id="summary" role="group"{{ /slot:attributes }}
{{ trans:strings.form_error }}
@@ -26,7 +27,7 @@ {{ trans:strings.form_error }}
-
+ {{ /partial:components/notification }}
{{# Success notifications. #}}