File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/storage/views/23161bd68f8a48a2e6ac444df40ea218
<div class="messages"> <?php if($errors != ''): ?> <?php foreach($errors as $error): ?> <div class="error"><span class="icon"></span><span class="data"><?php echo $error; ?></span></div> <?php endforeach; ?> <?php endif; ?> <?php if(Session::get('errors_msg') != ''): ?> <?php foreach(Session::pull('errors_msg') as $key => $message): ?> <div class="error"><span class="icon"></span><span class="data"><?php echo $message; ?></span></div> <?php endforeach; ?> <?php /*<?php echo Session::remove('errors_msg'); ?>*/ ?> <?php endif; ?> <?php if(Session::get('success') != ''): ?> <?php foreach(Session::get('success') as $message): ?> <div class="success"><span class="icon"></span><span class="data"><?php echo $message; ?></span></div> <?php endforeach; ?> <?php endif; ?> <?php if(Session::get('messages') != ''): ?> <?php foreach(Session::get('messages') as $message): ?> <div class="message"><span class="icon"></span><span class="data"><?php echo $message; ?></span></div> <?php endforeach; ?> <?php 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>