]> BookStack Code Mirror - bookstack/blob - resources/views/common/notifications.blade.php
Added 'Sort Book' action to chapters
[bookstack] / resources / views / common / notifications.blade.php
1 <div notification="success" style="display: none;" data-autohide class="pos" role="alert" @if(session()->has('success')) data-show @endif>
2     @icon('check-circle') <span>{!! nl2br(htmlentities(session()->get('success'))) !!}</span><div class="dismiss">@icon('close')</div>
3 </div>
4
5 <div notification="warning" style="display: none;" class="warning" role="alert" @if(session()->has('warning')) data-show @endif>
6     @icon('info') <span>{!! nl2br(htmlentities(session()->get('warning'))) !!}</span><div class="dismiss">@icon('close')</div>
7 </div>
8
9 <div notification="error" style="display: none;" class="neg" role="alert" @if(session()->has('error')) data-show @endif>
10     @icon('danger') <span>{!! nl2br(htmlentities(session()->get('error'))) !!}</span><div class="dismiss">@icon('close')</div>
11 </div>