@extends('layouts.app') @section('content')
@include('partials.headers.job')

{{ $title }} {{ $location ?? null ? '- ' . $location : '' }}


@if ($intro ?? false) @include('partials.components.introduction', [ 'introduction' => $intro, ]) @endif @if ($content ?? false)
{!! $content !!}
@endif
@if ($form ?? false) @include('partials.components.form', [ 'form' => $form, 'title' => $formTitle ?? null, 'formClass' => 'bg-[#EBEFF1]', ]) @endif
@if ($pageCta ?? false) @include('partials.page-cta', ['section' => $pageCta]) @endif @endsection