Skip to content

Instantly share code, notes, and snippets.

@marufmax
Created March 22, 2018 17:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marufmax/3e2bf2d7075bc90a029b85eeaad5cc12 to your computer and use it in GitHub Desktop.
Save marufmax/3e2bf2d7075bc90a029b85eeaad5cc12 to your computer and use it in GitHub Desktop.
Laravel Bootstrap Session Success and Error Flash Messages
@if(isset($errors)&&count(errors) > 0)
<div class="alert alert-dismissible alert-danger fade show">
<button type="button" class="close" data-dismiss="alter" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
@foreach($errors->all() as $error)
<li>
<strong>{!! $error !!}</strong>
</li>
@endforeach
</div>
@endif
@if(session()->has('success'))
<div class="alert alert-dismissible alert-success fade show">
<button type="button" class="close" data-dismiss="alter" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
<strong>
{!! session()->get('success') !!}
</strong>
</div>
@endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment