{{ __('New IT Request') }}

{{-- Breadcrumb --}}
← My Requests > {{ __('New IT Request') }}
{{-- Main Content Card --}}
{{-- Title --}}

{{ __('New IT Request') }}

{{-- Session Status --}} @if (session('status'))
{{ session('status') }}
@endif {{-- Asset Details Section --}}

{{ __('Your Assigned Asset') }}

@if($assignedAsset)

{{ $assignedAsset->asset->assetID }}

{{ $assignedAsset->asset->model ?? 'N/A' }}

@else

No asset currently assigned to you.

@endif
{{-- HOD Information Section --}}

{{ __('Approver Information') }}

@if($hod)

{{ $hod->fullName }}

{{ $hod->department }} Department

@else

No HOD assigned for your department. Please contact IT Department.

@endif
{{-- New IT Request Form Section --}}

{{ __('Request Details') }}

{{-- Error message for no assigned asset --}} @if ($errors->has('asset'))

{{ $errors->first('asset') }}

@endif @if (!$assignedAsset)

No assigned asset. You must have an assigned asset to submit an IT request.

@endif
@csrf
{{-- Request Date --}}
{{-- Request Title --}}
{{-- Request Description --}}
{{-- Buttons --}}
{{ __('Cancel') }}
{{-- Information Notice --}}

Note: Once you submit this request, your designated HOD will receive an email notification and will need to approve the request within 3 days.