@if($errors->any())

{{ count($errors) === 1 ? 'There was an error with your submission' : 'There were errors with your submission' }}

    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif