@extends('employee.layouts.app') @section('title', get_setting('site_name').' | '.__('New Application')) @section('content')

{{ __('New application') }}

{{ __('Submit an application or problem to management.') }}

{{ __('Back to list') }}
{{ __('Application to management') }}
{{ __('Submit to management via approval hierarchy, or check confidential to send only to your selected recipient.') }}
@if($toRecipients->isEmpty())
{{ __('Application recipients are not configured yet. Please contact HR or administration.') }}
@else
@csrf
{{ __('Recipient') }}
{{ __('Select the person you are submitting this application to.') }}
@error('to_staff_id')
{{ $message }}
@enderror
@if(!empty($confidentialOptionEnabled) && $confidentialOptionEnabled)
{{ __('When checked, approval hierarchy is skipped. Only the selected To recipient and you can access this application.') }}
@endif
{{ __('Application details') }}
@error('enothi_category_id')
{{ $message }}
@enderror
{{ __('Urgent applications get a shorter SLA deadline.') }}
@error('priority')
{{ $message }}
@enderror
@error('subject')
{{ $message }}
@enderror
@error('body')
{{ $message }}
@enderror
{{ __('Attachments & submission') }}
{{ __('PDF, images, or Word documents, max 5MB each.') }}
@error('attachments')
{{ $message }}
@enderror @error('attachments.*')
{{ $message }}
@enderror
{{ __('Cancel') }}
@endif
@endsection @section('script') @endsection