@include('jobs.partials.header-styles') @include('jobs.partials.header', ['activeLink' => 'search'])

{{ $job->title }}

📍 {{ $job->location }}
📅 Posted {{ $job->posted_date->format('F d, Y') }} | Expires {{ $job->expires_date->format('F d, Y') }}
@if($job->req_id)
Req# {{ $job->req_id }}
@endif @if($job->employment_type)
{{ $job->employment_type }}
@endif @if($job->department)
Department: {{ $job->department }}
@endif

Job Description

{!! $job->description !!}
@if($job->responsibilities)

What you'll get to do

{!! $job->responsibilities !!}
@endif @if($job->requirements)

Requirements

{!! $job->requirements !!}
@endif @if($job->salary_min || $job->salary_max)

Salary

@if($job->salary_min && $job->salary_max) {{ $job->salary_currency }} {{ number_format($job->salary_min, 2) }} - {{ number_format($job->salary_max, 2) }} @elseif($job->salary_min) From {{ $job->salary_currency }} {{ number_format($job->salary_min, 2) }} @elseif($job->salary_max) Up to {{ $job->salary_currency }} {{ number_format($job->salary_max, 2) }} @endif

@endif @auth Apply Now @else Login to Apply @endauth
@include('jobs.partials.header-script') @include('jobs.partials.cookie-consent')