diff --git a/resources/views/components/notifications/toast-wrapper.blade.php b/resources/views/components/notifications/toast-wrapper.blade.php
new file mode 100644
index 0000000..4042cf0
--- /dev/null
+++ b/resources/views/components/notifications/toast-wrapper.blade.php
@@ -0,0 +1,17 @@
+@props([
+
+ 'timeout' => 5000,
+ 'id' => uniqid('toast-'),
+ 'position' => 'toast-top toast-center',
+])
+
+
+ {{ $slot }}
+
\ No newline at end of file
diff --git a/resources/views/components/notifications/toast.blade.php b/resources/views/components/notifications/toast.blade.php
new file mode 100644
index 0000000..b50c96e
--- /dev/null
+++ b/resources/views/components/notifications/toast.blade.php
@@ -0,0 +1,15 @@
+@props([
+ 'type' => 'info',
+ 'title' => null,
+ 'message' => null,
+])
+
+
+
+ @if($title)
+
{{ $title }}
+ @endif
+ {{ $message }}
+
+
+
\ No newline at end of file