{{-- Search Form --}}
{{-- Main search row --}}
@if(empty($country))
Select a country to load states
@endif
{{-- Additional filters row --}}
{{-- Filter Row --}}
@php $types = [ '' => 'All', 'Full-time' => 'Full-time', 'Part-time' => 'Part-time', 'Contract' => 'Contract', 'Travel' => 'Travel', 'Per Diem' => 'Per Diem', ]; @endphp @foreach($types as $value => $label) @endforeach
@if(count($activeFilters) > 0) @endif
Filters auto-apply Updating...
Showing {{ $jobs->total() }} jobs Filtered by: @if(count($activeFilters) > 0) @foreach($activeFilters as $tag) {{ $tag }} @endforeach @else All jobs @endif
{{-- Loading Overlay --}}
Searching...
{{-- Jobs Grid --}}
@if($jobs->count() > 0)
@include('jobs.partials.cards', ['jobs' => $jobs, 'savedJobIds' => $savedJobIds ?? []])
{{-- Numbered pagination (query-string friendly) --}}
Showing {{ $jobs->firstItem() ?? 0 }}-{{ $jobs->lastItem() ?? 0 }} of {{ $jobs->total() }}
{{ $jobs->links() }}
@else

No jobs found

Try adjusting your filters or searching a different keyword.

@endif