baktinurwahyudin

form_error_list.blade.php

May 21st, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.15 KB | None | 0 0
  1. @if($errors->any())
  2.   <ul class="alert alert-danger">
  3.     @foreach($errors->all() as $error)
  4.     <li>{{ $error }}</li>
  5.     @endforeach
  6.   </ul>
  7. @endif
Advertisement
Add Comment
Please, Sign In to add comment