@extends('portal.applicant_dashboard') @section('applicant')
{{-- Document-style card --}}
{{-- Header --}}

{{ $job->job_title }}

Location: {{ $job->location ?? 'Not specified' }}

Closing Date: {{ $job->closing_date ? $job->closing_date->format('M d, Y') : 'N/A' }}


{{-- Job Description --}}
Job Description

{{ $job->job_description }}

{{-- Responsibilities --}} @if($job->responsibilities)
Responsibilities

{{ $job->responsibilities }}

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

{{ $job->requirements }}

@endif
{{-- Apply / Applied --}}
@if ($hasApplied) You have already applied for this job @else Apply Now @endif
@endsection