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

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

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

職能基準(小項目)の新規登録・編集

職能区分

職能基準一覧
@if(isset($classSkillById) && !empty($mst_base_skills = $classSkillById['base_skills'])) @foreach($mst_base_skills as $mst_base_skill) @endforeach @endif
登録されている職能基準
{{$loop->index + 1}}. @if(mb_strwidth($mst_base_skill['name']) > 28) {{ mb_strimwidth($mst_base_skill['name'], 0, 28, '...', 'UTF-8') }} @else {{ $mst_base_skill['name'] }} @endif
職能基準
@if(isset($classSkillById) && !empty($mst_base_skills = $classSkillById['base_skills'])) @foreach($mst_base_skills as $mst_base_skill)
{{isset($loop) ? $loop->index + 1 : 1}}
@endforeach @endif
{{--End cointainer--}} @stop @section('modal') @include('layouts.modal') @stop @section('copy_subcategory') @include('career.skill.partial.copy_subcategory') @stop @section('layouts.footer') @include ('layouts.footer') @stop @section('optionalJs') @append