@extends('admin.layouts.app') @section('title', get_setting('site_name').' | '.__('New appraisal instance')) @section('content')
{{ __('New appraisal instance') }}

{{ __('Assign a staff member and map each workflow stage to the evaluator who will act at that step.') }}

@csrf

{{ __('Workflow — stage & evaluator assignment') }}

{{ __('Required for each stage except self-assessment (always the appraisee).') }}

@foreach($workflowStages as $step)
@if($step['is_self']) {{ __('Appraisee') }} @endif
@if($step['is_self'])

{{ __('Select staff above') }}

@else @error('evaluators.'.$step['stage'])
{{ $message }}
@enderror @endif
@endforeach {{ __('Back') }}
@endsection @section('script') @endsection