@if($report['results'][$name]['passed'])
{{ __('There are no mixed content resources on the webpage.') }}
@else
@if($report->user_id == 0)
@include('reports.partials.limited')
@else
@foreach($report['results'][$name]['errors'] as $error => $details)
@if($error == 'failed')
{{ __('There are :value mixed content resources on the webpage.', ['value' => number_format(array_sum(array_map('count', $report['results'][$name]['errors'][$error])), 0, __('.'), __(','))]) }}
@foreach($report['results'][$name]['errors'][$error] as $key => $value)
@endforeach
@endif
@endforeach
@endif
@endif