@extends('layouts.admin') @section('title', 'Job Application Details') @section('content_header')

Job Application Details

@stop @section('content')

Application #{{ $application->id }}

Applicant Information
First Name: {{ $application->first_name }}
Last Name: {{ $application->last_name }}
Email: {{ $application->email }}
Phone: {{ $application->phone }}
Marketing Consent: @if($application->marketing_consent) Yes @else No @endif
Application Information
Applied Date: {{ $application->created_at->format('F d, Y \a\t g:i A') }}
Resume: @if($application->resume_path) Download Resume @else No resume uploaded @endif
What They're Looking For

{{ $application->what_youre_looking_for }}

@stop @section('css') {{-- Add any specific CSS for this page --}} @stop @section('js') {{-- Add any specific JS for this page --}} @stop