@if(isset($report['results'][$name]))
@include('reports.partials.status')
{{ __('Image keywords') }}
@if($report['results'][$name]['passed'])
{{ __('All images have alt attributes set.') }}
@else @foreach($report['results'][$name]['errors'] as $error => $details)
@if($error == 'missing') {{ __('There are :value images with missing alt attributes.', ['value' => number_format(count($details), 0, __('.'), __(','))]) }} @endif
@endforeach @endif
{{ __('The alt attribute specifies an alternate text for an image, if the image cannot be displayed.') }} {{ __('The alt attribute is also useful for search engines to identify the subject of the image, and helps screen readers describe the image.') }}
@endif