mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-13 16:03:04 +00:00
18 lines
604 B
PHP
18 lines
604 B
PHP
<div {{ $attributes->merge(['class' => 'alert alert-dismissible alert-'.$type]) }} role="alert">
|
|
<button class="close" data-dismiss="alert" aria-label="Close">
|
|
<span aria-hidden="true">×</span><span class="sr-only">{{trans('common.close')}}</span>
|
|
</button>
|
|
@if(is_array($message))
|
|
@if(count($message) > 1)
|
|
<ul>
|
|
@foreach($message as $data)
|
|
<li>{!! $data !!}</li>
|
|
@endforeach
|
|
</ul>
|
|
@else
|
|
{!! $message[0]!!}
|
|
@endif
|
|
@else
|
|
{!! $message !!}
|
|
@endif
|
|
</div> |