2019-08-25 12:21:25 -04:00
|
|
|
<div notification="success" style="display: none;" data-autohide class="pos" role="alert" @if(session()->has('success')) data-show @endif>
|
2020-01-14 14:50:29 -05:00
|
|
|
@icon('check-circle') <span>{!! nl2br(htmlentities(session()->get('success'))) !!}</span><div class="dismiss">@icon('close')</div>
|
2016-03-12 10:52:19 -05:00
|
|
|
</div>
|
|
|
|
|
2019-08-25 12:21:25 -04:00
|
|
|
<div notification="warning" style="display: none;" class="warning" role="alert" @if(session()->has('warning')) data-show @endif>
|
2020-01-14 14:50:29 -05:00
|
|
|
@icon('info') <span>{!! nl2br(htmlentities(session()->get('warning'))) !!}</span><div class="dismiss">@icon('close')</div>
|
2016-02-07 05:14:11 -05:00
|
|
|
</div>
|
|
|
|
|
2019-08-25 12:21:25 -04:00
|
|
|
<div notification="error" style="display: none;" class="neg" role="alert" @if(session()->has('error')) data-show @endif>
|
2020-01-14 14:50:29 -05:00
|
|
|
@icon('danger') <span>{!! nl2br(htmlentities(session()->get('error'))) !!}</span><div class="dismiss">@icon('close')</div>
|
2016-02-07 05:14:11 -05:00
|
|
|
</div>
|