@extends('layouts.dashboard.main')
{{-- content --}}
@section('content')
{{-- nav --}}
@include('layouts.dashboard.components.ksap.nav')
{{-- block --}}
	{{-- aside --}}
	
	{{-- /.aside --}}
	{{-- main --}}
	
		
		
			
				
					
						
							- 
								{!! __("lang.employee.title") !!}
							
 
							- 
								
									{!! $staff['employee_label'] !!}
								
							 
						
						
					 
				 
				
					
						
							- 
								{!! __("lang.workplace.title") !!}
							
 
							- 
								
									{!! $staff['workplace_label'] !!}
								
							 
						
						
					 
				 
				
					
						
							- 
								{!! __("lang.coe.title") !!}
							
 
							- 
								
									{!! $staff['coe_label'] !!}
								
							 
						
						
					 
				 
			 
		
		
		
		
		
		{{-- 概要 --}}
		@if($tab == 0)
			@include('layouts.dashboard.components.ksap.summary')
		@endif
		{{-- プロフィール --}}
		@if($tab == 1)
			@include('layouts.dashboard.components.ksap.profile')
		@endif
		{{-- 就業場所 --}}
		@if($tab == 2)
			@include('layouts.dashboard.components.ksap.workplace')
		@endif
		{{-- 学業状況 --}}
		@if($tab == 3)
			@include('layouts.dashboard.components.ksap.college')
		@endif
	
	{{-- /.main --}}
 
{{-- /.block --}}
{{-- btn-fixed --}}
{{-- /.btn-fixed --}}
@endsection
{{-- css --}}
@section('css')
@stop
{{-- js --}}
@section('js')
@stop