@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 flash message--}}
  • @{{form.errors.get(key)}}
{{--End flash message--}}
{{csrf_field()}}

職位の閲覧・編集

職位一覧
{{--Render position widget--}} @php $firstPosDisp = true; @endphp @include('widget.position') {{--Begin position--}}
@if(isset($positionByPid)) {{sprintf('%s の編集', TnHelper::getPositionJP($positions, $positionByPid))}} @else {{'新規登録'}} @endif
職位名
職位名に 関する備考
等級
1級 ~
対象
滞留目安
期待される 職責
期待される 役割
理想的な姿
Point
@if(isset($positionByPid)) @if($positionByPid->use_position_flg) {{-- 職位が設定されている職員が存在する場合 --}} 職位の削除 @else 職位の削除 @endif @endif メニューに戻る
{{--End position--}}
{{--End container--}} @stop @section('modal') @include('layouts.modal') @stop @section('layouts.footer') @include ('layouts.footer') @stop @section('optionalJs') {{--This section is Jquery--}} @append