PATH:
home
/
lab2454c
/
vaultchip.com
/
resources
/
views
/
common
<div class="row mt-3"> <div class="col-sm-9"></div> <div class="col-sm-3"> @if(session()->has('success')) <div class="alert alert-success custom-alert-alternate custom-alert-info" role="alert" id="successmsg"> <strong>{{ session()->get('success') }}</strong> <button type="button" class="close custom-close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> @endif @if($errors->any()) <div class="alert alert-danger custom-alert-alternate custom-alert-info" role="alert" id="errormsg"> <strong>{{ $errors->first() }}</strong> <button type="button" class="close custom-close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> @endif </div> </div> <script> setTimeout(function() { $('#successmsg').slideUp(300); }, 3000); setTimeout(function() { $('#errormsg').fadeOut('fast'); }, 3000); </script>
[+]
..
[-] messageContainer.blade.php
[edit]