]> BookStack Code Mirror - bookstack/blob - resources/views/partials/notifications.blade.php
#47 - Fixes the issues with the test case.
[bookstack] / resources / views / partials / notifications.blade.php
1
2 <div class="notification anim pos" @if(!session()->has('success')) style="display:none;" @endif>
3     <i class="zmdi zmdi-check-circle"></i> <span>{!! nl2br(htmlentities(session()->get('success'))) !!}</span>
4 </div>
5
6 <div class="notification anim warning stopped" @if(!session()->has('warning')) style="display:none;" @endif>
7     <i class="zmdi zmdi-info"></i> <span>{!! nl2br(htmlentities(session()->get('warning'))) !!}</span>
8 </div>
9
10 <div class="notification anim neg stopped" @if(!session()->has('error')) style="display:none;" @endif>
11     <i class="zmdi zmdi-alert-circle"></i> <span>{!! nl2br(htmlentities(session()->get('error'))) !!}</span>
12 </div>