diff --git a/resources/views/admin/dashboard.blade.php b/resources/views/admin/dashboard.blade.php index f750188c..c4ca2f0a 100644 --- a/resources/views/admin/dashboard.blade.php +++ b/resources/views/admin/dashboard.blade.php @@ -1,3 +1,4 @@

Admin

+
diff --git a/resources/views/components/input/checkbox.blade.php b/resources/views/components/input/checkbox.blade.php new file mode 100644 index 00000000..e7f3e53c --- /dev/null +++ b/resources/views/components/input/checkbox.blade.php @@ -0,0 +1,52 @@ +@props([ + 'name', + 'label', + 'checked' => false, +]) + +
+ + {{ $label }} + + + + + + + +
+