Move errors partial out of dashboard dir to prevent DashboardComposer running

This commit is contained in:
James Brooks
2018-06-14 20:27:42 +01:00
parent aba944b6dd
commit deeb40cd48
41 changed files with 59 additions and 53 deletions
+15
View File
@@ -0,0 +1,15 @@
<div class="alerts">
<div class="alert alert-{{ $level }} alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">&times;</span></button>
@if(isset($title)) <h5>{!! $title !!}</h5> @endif
@if(is_array($message))
<ul class="list-unstyled">
@foreach ($message as $msg)
<li>{!! $msg !!}</li>
@endforeach
</ul>
@else
{!! $message !!}
@endif
</div>
</div>