@if ($errors->any())

{{ count($errors->all()) === 1 ? 'Validation Error' : 'Validation Errors' }}

@if(count($errors->all()) === 1)

{{ $errors->first() }}

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