@extends('admin.layouts.app') @section('title', get_setting('site_name').' | '.($template ? __('Edit appraisal template') : __('New appraisal template'))) @section('content') @php $kpiJson = old('kpi_schema_json', $template ? json_encode($template->kpi_schema ?? [], JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE) : json_encode([ ['id' => 'quality', 'label' => 'Quality of work', 'weight' => 30, 'input' => 'rating_1_5'], ], JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE)); $evalJson = old('evaluation_schema_json', $template ? json_encode($template->evaluation_schema ?? [], JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE) : json_encode([ ['id' => 'strengths', 'label' => 'Key strengths', 'input' => 'text'], ], JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE)); $selCycles = old('cycles', $template ? ($template->cycles ?? []) : $defaultCycles); @endphp