@if(isset($report['results'][$name]))
@include('reports.partials.status')
{{ __('Mixed content') }}
@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
{{ __('The mixed content is the content that is loaded over the HTTP connection while the webpage itself was loaded over HTTPS connection.') }}
@endif