Skip to content

Commit 03ff147

Browse files
committed
Updated Alert for better UI.
1 parent bd67d20 commit 03ff147

File tree

1 file changed

+70
-6
lines changed

1 file changed

+70
-6
lines changed

resources/views/common/alert.blade.php

+70-6
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,82 @@
33
<div class="text-muted">{{Session('message')}}</div>
44
</div>
55
@elseif(Session::has('success'))
6-
<div class="alert alert-success" role="alert">
7-
<div class="text-muted">{{Session('success')}}</div>
6+
<div class="alert alert-important alert-success alert-dismissible" role="alert">
7+
<div class="d-flex">
8+
<div>
9+
<!-- Download SVG icon from http://tabler.io/icons/icon/check -->
10+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
11+
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
12+
class="icon alert-icon icon-2">
13+
<path d="M5 12l5 5l10 -10"></path>
14+
</svg>
15+
</div>
16+
<div>
17+
{{Session('success')}}
18+
</div>
19+
</div>
20+
<a class="btn-close" data-bs-dismiss="alert" aria-label="close"></a>
21+
</div>
22+
@elseif(Session::has('warning'))
23+
<div class="alert alert-important alert-warning alert-dismissible" role="alert">
24+
<div class="d-flex">
25+
<div>
26+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
27+
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
28+
class="icon alert-icon icon-2">
29+
<path d="M12 9v4"></path>
30+
<path
31+
d="M10.363 3.591l-8.106 13.534a1.914 1.914 0 0 0 1.636 2.871h16.214a1.914 1.914 0 0 0 1.636 -2.87l-8.106 -13.536a1.914 1.914 0 0 0 -3.274 0z"></path>
32+
<path d="M12 16h.01"></path>
33+
</svg>
34+
</div>
35+
<div>
36+
{{Session('success')}}
37+
</div>
38+
</div>
39+
<a class="btn-close" data-bs-dismiss="alert" aria-label="close"></a>
840
</div>
941
@elseif(Session::has('error'))
10-
<div class="alert alert-danger" role="alert">
11-
<div class="text-muted">{{Session('error')}}</div>
42+
<div class="alert alert-important alert-danger alert-dismissible" role="alert">
43+
<div class="d-flex">
44+
<div>
45+
<!-- Download SVG icon from http://tabler.io/icons/icon/alert-circle -->
46+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
47+
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
48+
class="icon alert-icon icon-2">
49+
<path d="M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"></path>
50+
<path d="M12 8v4"></path>
51+
<path d="M12 16h.01"></path>
52+
</svg>
53+
54+
</div>
55+
<div>
56+
{{Session('error')}}
57+
</div>
58+
</div>
59+
<a class="btn-close" data-bs-dismiss="alert" aria-label="close"></a>
1260
</div>
1361
@endif
1462
@if ($errors->any())
1563
@foreach ($errors->all() as $error)
16-
<div class="alert alert-danger" role="alert">
17-
<div class="text-muted">{{$error}}</div>
64+
<div class="alert alert-important alert-danger alert-dismissible" role="alert">
65+
<div class="d-flex">
66+
<div>
67+
<!-- Download SVG icon from http://tabler.io/icons/icon/alert-circle -->
68+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
69+
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
70+
class="icon alert-icon icon-2">
71+
<path d="M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"></path>
72+
<path d="M12 8v4"></path>
73+
<path d="M12 16h.01"></path>
74+
</svg>
75+
76+
</div>
77+
<div>
78+
{{$error}}
79+
</div>
80+
</div>
81+
<a class="btn-close" data-bs-dismiss="alert" aria-label="close"></a>
1882
</div>
1983
@endforeach
2084
@endif

0 commit comments

Comments
 (0)