@section('site_title', formatTitle([__('SERP checker'), __('Tool'), config('settings.title')])) @include('shared.breadcrumbs', ['breadcrumbs' => [ ['url' => route('dashboard'), 'title' => __('Home')], ['url' => route('tools'), 'title' => __('Tools')], ['title' => __('Tool')], ]])

{{ __('SERP checker') }}

{{ __('SERP checker') }}
@include('shared.message')
@csrf
@if ($errors->has('keyword')) {{ $errors->first('keyword') }} @endif
@if ($errors->has('domain')) {{ $errors->first('domain') }} @endif
@if ($errors->has('country')) {{ $errors->first('country') }} @endif
@if(config('settings.captcha_serp_checker')) {!! NoCaptcha::displaySubmit('serp-checker-form', __('Send'), ['data-theme' => (Cookie::get('dark_mode') == 1 ? 'dark' : 'light'), 'data-size' => 'invisible', 'class' => 'btn ' . ($errors->has('g-recaptcha-response') ? 'btn-danger' : 'btn-primary')]) !!} {!! NoCaptcha::renderJs(__('lang_code')) !!} @else @endif
@if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif
@if(isset($results))
{{ __('Results') }}
@if(empty($results) || isset($results['items']) == false) {{ __('No results found.') }} @elseif(isset($results['error'])) {{ $results['error']['code'] ?? null }} {{ $results['error']['message'] ?? null }} @else
#
{{ __('URL') }}
@foreach($results['items'] as $result)
{{ __('Copy') }}
@endforeach
@endif
@endif