@if(!empty($category))

{{ $category->name }}

@elseif(!empty($location))

{{ $location->name }}

@else

{{ setting_item_with_lang('job_page_search_title') ?? __("Find Jobs") }}

@endif
@include("Job::frontend.layouts.form-search.form-style-1")
@php $job_sidebar_cta = setting_item_with_lang('job_sidebar_cta',request()->query('lang'), $settings['job_sidebar_cta'] ?? false); if(!empty($job_sidebar_cta)) $job_sidebar_cta = json_decode($job_sidebar_cta); @endphp @if(!empty($job_sidebar_cta->title))
{{ $job_sidebar_cta->title ?? '' }}

{{ $job_sidebar_cta->desc ?? '' }}

@if(!empty($job_sidebar_cta->button->url)) {{ $job_sidebar_cta->button->name ?? __("Start Recruiting Now") }} @endif
@endif
@if(!empty($rows) && count($rows) > 0)
{{ __("Showing") }} {{ $rows->firstItem() }}-{{ $rows->lastItem() }} {{ __("of") }} {{ $rows->total() }} {{ __("jobs") }}
@include("Job::frontend.layouts.search.order-sort")
@foreach($rows as $row)
@include("Job::frontend.layouts.loop.job-item-1")
@endforeach
{{$rows->appends(request()->query())->links()}}
@else

{{ __("No job results found") }}

@endif