2 <div notification="success" data-autohide class="pos" @if(session()->has('success')) data-show @endif>
3 @icon('check-circle') <span>{!! nl2br(htmlentities(session()->get('success'))) !!}</span>
6 <div notification="warning" class="warning" @if(session()->has('warning')) data-show @endif>
7 @icon('info') <span>{!! nl2br(htmlentities(session()->get('warning'))) !!}</span>
10 <div notification="error" class="neg" @if(session()->has('error')) data-show @endif>
11 @icon('danger') <span>{!! nl2br(htmlentities(session()->get('error'))) !!}</span>