@extends('admin.layouts.app') @section('title', get_setting('site_name').' | '.__('Assign appraisal')) @section('content') @php $st = $appraisalSettings; $allowThree = $st?->enable_three_month ?? true; $allowSix = $st?->enable_six_month ?? true; $allowAnnual = $st?->enable_annual ?? true; $cycleLabels = [ \App\Models\StaffAppraisalRecord::CYCLE_THREE_MONTH => __('3-month probation review'), \App\Models\StaffAppraisalRecord::CYCLE_SIX_MONTH => __('6-month review'), \App\Models\StaffAppraisalRecord::CYCLE_ANNUAL => __('Annual appraisal'), ]; @endphp
{{ __('Assign appraisal to staff') }}
@csrf
@error('staff_id')
{{ $message }}
@enderror
@error('staff_appraisal_template_id')
{{ $message }}
@enderror
@error('cycle_type')
{{ $message }}
@enderror
{{ __('Cancel') }}
@endsection