Skip to content

Commit 6b0a09d

Browse files
committed
adds a card wrapping the error message
1 parent 42f2df6 commit 6b0a09d

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed

src/resources/views/ui/errors/layout.blade.php

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,23 @@
99
@section('content')
1010
<div class="row">
1111
<div class="col-md-12 text-center">
12-
<div class="error_number">
13-
<small>ERROR</small><br>
14-
{{ $error_number }}
15-
<hr>
16-
</div>
17-
<div class="error_title text-muted">
18-
@yield('title')
19-
</div>
20-
@if(backpack_user())
21-
<div class="error_description text-muted">
22-
<small>
23-
@yield('description')
24-
</small>
25-
</div>
26-
@endif
12+
<div class="card pb-4">
13+
<div class="error_number">
14+
<small>ERROR</small><br>
15+
{{ $error_number }}
16+
<hr>
17+
</div>
18+
<div class="error_title text-muted">
19+
@yield('title')
20+
</div>
21+
@if(backpack_user())
22+
<div class="error_description text-muted">
23+
<small>
24+
@yield('description')
25+
</small>
26+
</div>
27+
@endif
28+
</div>
2729
</div>
2830
</div>
2931
@endsection

0 commit comments

Comments
 (0)