@extends('layouts.app') @section('page-title', 'Requisition') @section('content')

Requisition Form

@csrf
@php // Only these roles may raise a requisition on someone else's // behalf; everyone else can only ever create for themselves, // so the choice UI is skipped for them entirely. $canRequestForOthers = in_array($user->role->name ?? '', [ 'Admin', 'Regional_Coordinator', 'County_Coordinator', 'Supervisor', 'Finance', 'Manager', 'Partnerships_Growth_Manager', ]); $stepNum = 1; @endphp @if($canRequestForOthers)
{{ $stepNum }}
Who Is This For
Requisition for yourself or someone else
@php $stepNum++; @endphp @else @endif
{{ $stepNum }}
Request Details
How this engagement is structured
@php $stepNum++; @endphp
{{ $stepNum }}
Position Details
Who's needed, where, and for how long
@php $stepNum++; @endphp
{{ $stepNum }}
List of Proposed Positions
Add each coach and their justification
Coach Justification* Roles & Responsibilities Action
Complete all required fields to continue
@endsection