@extends('layouts.app') @section('page-title', __('Edit Appraisal')) @section('page-heading', __('Edit Appraisal for ' . $appraisal->user->first_name . ' ' . $appraisal->user->last_name)) @section('content')
@csrf @method('PUT')

{{ $appraisalDate }}

{{ $period }}

@lang('Specify the duration value based on the selected type (years, months, or days).')
@foreach(['motivation', 'resourcefulness', 'leadership', 'discipline', 'teamwork'] as $category)
@foreach(range(1, 5) as $score)
{$category.'_score'}) == $score ? 'checked' : '' }} required>
@endforeach
@error($category.'_score') {{ $message }} @enderror
@endforeach
@error('comments') {{ $message }} @enderror
@stop