File: D:/HostingSpaces/SBogers10/topswtwmobile.komma.pro/app/views/partials/messages.blade.php
<div class="messages">
@if($errors != '')
@foreach ($errors as $error)
<div class="error"><span class="icon"></span><span class="data">{{ $error }}</span></div>
@endforeach
@endif
@if(Session::get('errors_msg') != '')
@foreach (Session::pull('errors_msg') as $key => $message)
<div class="error"><span class="icon"></span><span class="data">{{ $message }}</span></div>
@endforeach
{{--{{Session::remove('errors_msg');}}--}}
@endif
@if(Session::get('success') != '')
@foreach (Session::get('success') as $message)
<div class="success"><span class="icon"></span><span class="data">{{ $message }}</span></div>
@endforeach
@endif
@if(Session::get('messages') != '')
@foreach (Session::get('messages') as $message)
<div class="message"><span class="icon"></span><span class="data">{{ $message }}</span></div>
@endforeach
@endif
<div class="ajax hide error"><span class="icon"></span> <span ng-bind="messages.error" class="data"></span></div>
<div class="ajax hide success"><span class="icon"></span> <span ng-bind="messages.success" class="data"></span>
</div>
<div class="ajax hide message"><span class="icon"></span> <span ng-bind="messages.message" class="data"></span>
</div>
</div>