Display Validation Errors

<!-- /resources/views/post/create.blade.php --> <h1>Create Post</h1> @if ($errors->any()) <div class="alert alert-danger"> <ul> @foreach ($errors->all() as $error) <li><!--swig13--></li> @endforeach </ul> </div> @endif <!-- Create Post Form --> 

See: Validation Errors

Comments