My beer compendium
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
569 B

3 years ago
  1. <! This will check for errors and loop through the errors>
  2. @if(count($errors) > 0)
  3. @foreach($errors->all() as $error)
  4. <! This simply display what the error is>
  5. <div class="alert alert-danger">
  6. {{$error}}
  7. </div>
  8. @endforeach
  9. @endif
  10. <! This look out for the session success>
  11. @if(session('success'))
  12. <div class="alert alert-success">
  13. {{session('success')}}
  14. </div>
  15. @endif
  16. <! This look out for the session error>
  17. @if(session('error'))
  18. <div class="alert alert-danger">
  19. {{session('error')}}
  20. </div>
  21. @endif