Guest User

Untitled

a guest
Jun 22nd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. @if(count($errors->all()))
  2. <article class="message is-warning">
  3. <div class="message-header">
  4. <p>Notice</p>
  5. </div>
  6. <div class="message-body">
  7. <ul>
  8. @foreach($errors->all() as $error)
  9. <li>{{ $error }}</li>
  10. @endforeach
  11. </ul>
  12. </div>
  13. </article>
  14. @endif
  15.  
  16. @if(Session::has('info'))
  17. <div class="notification is-info">
  18. {{ Session::get('info') }}
  19. </div>
  20. @endif
  21.  
  22. @if(Session::has('warning'))
  23. <div class="notification is-warning">
  24. {{ Session::get('warning') }}
  25. </div>
  26. @endif
  27.  
  28. @if(Session::has('status'))
  29. <div class="notification is-info">
  30. {{ Session::get('status') }}
  31. </div>
  32. @endif
Add Comment
Please, Sign In to add comment