<?php if(Session::has('flashSuccess')): ?>
    <div class="alert alert-success fade in flash_message">
        <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
        <strong><?php echo e(Session::get('flashSuccess')); ?></strong>
    </div>
<?php endif; ?>

<?php if(Session::has('flashError')): ?>
    <div class="alert alert-danger fade in flash_message">
        <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
        <strong><?php echo e(Session::get('flashError')); ?></strong>
    </div>
<?php endif; ?>

<?php if(Session::has('errors')): ?>
    <div class="alert alert-danger fade in flash_message">
        <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
        <strong><?php echo e(Session::get('errors')->first()); ?></strong>
    </div>
<?php endif; ?>