diff --git a/resources/js/components/FormWrapper.vue b/resources/js/components/FormWrapper.vue
index 2f9e71be..8edf0c8d 100644
--- a/resources/js/components/FormWrapper.vue
+++ b/resources/js/components/FormWrapper.vue
@@ -4,8 +4,8 @@
-
-
+
+
diff --git a/resources/js/components/Notification.vue b/resources/js/components/Notification.vue
new file mode 100644
index 00000000..66a3afb7
--- /dev/null
+++ b/resources/js/components/Notification.vue
@@ -0,0 +1,45 @@
+
+
+
+ {{ message }}
+
+
+
+
\ No newline at end of file
diff --git a/resources/js/components/index.js b/resources/js/components/index.js
index 173d43de..e778ae85 100644
--- a/resources/js/components/index.js
+++ b/resources/js/components/index.js
@@ -6,6 +6,7 @@ import FormField from './FormField'
import FormSelect from './FormSelect'
import FormSwitch from './FormSwitch'
import FormButtons from './FormButtons'
+import Notification from './Notification'
import VueFooter from './Footer'
// Components that are registered globaly.
@@ -17,6 +18,7 @@ import VueFooter from './Footer'
FormSelect,
FormSwitch,
FormButtons,
+ Notification,
VueFooter,
].forEach(Component => {
Vue.component(Component.name, Component)