Skip to content

Instantly share code, notes, and snippets.

@marufmax
Created April 12, 2018 22:24
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/99eb6e553ea6599926491bdd8bd9922d to your computer and use it in GitHub Desktop.
Save marufmax/99eb6e553ea6599926491bdd8bd9922d to your computer and use it in GitHub Desktop.
@if ($errors->any())
<div class="alert alert-danger">
<ul>
@foreach ($errors->all() as $error)
<li>{{ $error }}</li>
@endforeach
</ul>
</div>
@endif
@if (\Session::get('success'))
<div class="alert alert-success">
<p>{{ \Session::get('success') }}</p>
</div>
@endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment