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

{{ $appraisalDate }}

{{ $period }}

@foreach(['motivation', 'resourcefulness', 'leadership', 'discipline', 'teamwork'] as $category)
@foreach(range(1, 5) as $score)
@endforeach
@error($category.'_score') {{ $message }} @enderror
@endforeach
@error('comments') {{ $message }} @enderror
@stop