|
3 | 3 | <div class="text-muted">{{Session('message')}}</div>
|
4 | 4 | </div>
|
5 | 5 | @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> |
8 | 40 | </div>
|
9 | 41 | @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> |
12 | 60 | </div>
|
13 | 61 | @endif
|
14 | 62 | @if ($errors->any())
|
15 | 63 | @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> |
18 | 82 | </div>
|
19 | 83 | @endforeach
|
20 | 84 | @endif
|
0 commit comments