@extends('layouts.general') @section('layouts.header') @include('layouts.header') @stop @section('optionalCss') @stop @section('content')
{{--Validator Error From Server--}} @if($errors->any())
×
    @foreach ($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif {{--End Validator Error From Server--}} {{--Begin flash message--}}
@foreach (['danger', 'warning', 'success', 'info'] as $msg) @if(Session::has('alert-' . $msg))

{{ Session::get('alert-' . $msg) }} ×

@endif @endforeach
{{--End flash message--}} {{--Begin validate message--}}
  • @{{form.errors.get(key)}}
{{--End validate message--}}

個人別の記録を閲覧・編集することができます

@php $trz_positions = array_first(TnHelper::getDataOfDotArray($feedbackList, 'trz_positions')); @endphp @if($feedbackList->count())
{{csrf_field()}}
@isset($trz_positions) @endisset
@if($evaluationDateList->count()) @foreach ($evaluationDateList as $evaluationDate) @include('feedback.sheet.partial.modify_evaluation') @endforeach @else @include('feedback.sheet.partial.modify_evaluation') @endif
@endif
@stop @section('modal') @include('layouts.modal') @stop @section('layouts.footer') @include ('layouts.footer') @stop @section('optionalJs') @append