@extends('layouts.master') @section('title') {{ __('Add New Request') }} @endsection @section('css') @endsection @section('content') @php $currentRole = \App\Support\WorkflowPermission::normalizeRole((string) (auth()->user()->role ?? 'user')); $dashboardRouteName = $currentRole === \App\Support\WorkflowPermission::ROLE_REQUESTER ? 'requester.dashboard' : 'role.dashboard'; $dashboardUrl = route($dashboardRouteName); @endphp @component('components.breadcrumb') @slot('li_1') {{ __('Requester') }} @endslot @slot('title') {{ __('Add New Request') }} @endslot @endcomponent

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

{{ __('Follow the sections below to complete your request accurately and faster.') }}

@csrf
1{{ __('Select Document Type') }}
{{ __('Please select a document type.') }}
2{{ __('Upload Files') }}
{{ __('Upload Main File') }}

{{ __('Main File (1 file only). Allowed types: PDF, PNG.') }}

{{ __('Drop main file here or click to upload.') }}
  • Uploaded file
     

{{ __('Uploading file...') }} 0%
{{ __('Add Supporting Files') }}

{{ __('Supporting Files (multiple allowed). All file types are allowed.') }}

{{ __('Drop supporting files here or click to upload.') }}
  • Uploaded file
     

{{ __('Uploading files...') }} 0%
{{-- Required files section: shown instead of generic supporting files --}}
4{{ __('Document Information') }}
{{ __('Cancel') }}
@endsection @section('script') @endsection