@if(isset($report['results'][$name]))
@include('reports.partials.status')
{{ __('Character set') }}
@if($report['results'][$name]['passed'])
{{ __('The webpage has a charset value set.') }}
{{ $report['results'][$name]['value'] }}
@else @foreach($report['results'][$name]['errors'] as $error => $details)
@if($error == 'missing') {{ __('The webpage does not have a charset declared.') }} @endif
@endforeach @endif
{{ __('The meta charset tag specifies the character encoding, helping the browsers to better render the characters and symbols on the webpage.') }}
@endif