{{-- Standalone Search Form Section Expects $content to have keys like: $content['section_title'] (optional) $content['search_placeholder_keywords'] $content['search_placeholder_location'] $content['search_target_url'] (e.g., /jobs) $content['button_text'] --}} @php $sectionTitle = $content['section_title'] ?? null; $keywordsPlaceholder = $content['search_placeholder_keywords'] ?? 'Keywords (e.g., Developer)'; $locationPlaceholder = $content['search_placeholder_location'] ?? 'Location (e.g., City, State)'; $targetUrl = $content['search_target_url'] ?? url('/jobs'); $buttonText = $content['button_text'] ?? 'Search'; @endphp
@if($sectionTitle)

{{ $sectionTitle }}

@endif