@if (is_plugin_active('job-board')) @php if ($categoryIds = request()->input('job_categories', [])) { $categories = Botble\JobBoard\Models\Category::query() ->whereIn('id', (array) $categoryIds) ->pluck('name') ->all(); } else { $categories = []; } @endphp
{!! Form::open(['url' => JobBoardHelper::getJobsPageURL(), 'method' => 'GET', 'data-quick-search-url' => route('public.ajax.quick-search-jobs')]) !!} @if (isset($style)) @endif @if (is_plugin_active('job-board'))
@endif @if (is_plugin_active('location')) @endif @if (!isset($style)) @endif
{!! Form::close() !!}
@if ($trendingKeywords)
{{ __('Popular Searches:') }} @if ($keywords = array_map('trim', array_filter(explode(',', $trendingKeywords)))) @foreach ($keywords as $item) {{ $item }}{{ ! $loop->last ? ',' : '' }} @endforeach @endif
@endif @endif