@extends('layouts.master') @section('content')
{{$title}}
@if(\Auth::user()->utype==1) Employee List Employee Add

@endif

Employee Information

{{ csrf_field() }}
{{ $errors->first('name') }}
{{ $errors->first('personal_email') }}
{{ $errors->first('phone') }}
{{ $errors->first('birth_day') }}
{{ $errors->first('present_address') }}
Pic

Employment History: Please Add Recent First

@foreach($emp_details as $emp_history) @endforeach
# date Designation Salary Grade Action
{{ $i++ }}

File Upload

@foreach($employee_document as $emp_doc) @endforeach
# Document Type File Action
{{ $i++ }} {{ @$emp_doc->file}}

Academic Information

@foreach($employee_education as $emp_edu) @endforeach
# Education Level Institute Major/Group Marks/CGPA Passing Year Duration Action
{{ $i++ }}

Work Experience

@foreach($employee_ewe as $all_des) @endforeach
# Org Name Org Contact Designation Start Date End Date Action
{{ $i++ }}

Reference / Emergence Contact

@if(!empty($employee_ref)) @foreach($employee_ref as $emp_ref) @endforeach @endif
# Person Name Relation Phone 1 Phone 2 Email Address Action
{{ $i++ }}
@stop @section('script') @stop