@if(isset($report['results'][$name]))
@include('reports.partials.status')
{{ __('DOCTYPE') }}
@if($report['results'][$name]['passed'])
{{ __('The webpage has the DOCTYPE declaration tag set.') }}
{{ $report['results'][$name]['value'] }}
@else @if($report->user_id == 0) @include('reports.partials.limited') @else @foreach($report['results'][$name]['errors'] as $error => $details)
@if($error == 'missing') {{ __('The webpage does not have the DOCTYPE declaration tag set.') }} @endif
@endforeach @endif @endif
{{ __('The DOCTYPE declaration tag defines which version of HTML the webpage is using, making compliant browsers render the webpage properly.') }}
@endif