@extends('front.layout.app') @section('content')

{{ $application->title ?? '' }}

@if(session('success')) @endif @foreach($errors->all() as $error) @endforeach

{{ $application->title ?? '' }}

Department: {{ $application->department ?? 'N/A' }}

Address: {{ $application->address ?? 'N/A' }}

Salary: {{ $application->salary ?? 'Negotiable' }}

Deadline: {{ $application->deadline ?? 'Open Until Filled' }}

Description

{!! nl2br(e($application->description ?? '')) !!}

@if($application->requirements)
Requirements

{!! nl2br(e($application->requirements)) !!}

@endif
@endsection