@extends('admin.layout.master') @section('content')

Create Employee

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf

Personal Details :-

@if ($errors->has('profile_img')) {{ $errors->first('profile_img') }} @endif
@if ($errors->has('date_of_joining')) {{ $errors->first('date_of_joining') }} @endif
@if ($errors->has('emp_title')) {{ $errors->first('emp_title') }} @endif
@if ($errors->has('emp_name')) {{ $errors->first('emp_name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('phone_number')) {{ $errors->first('phone_number') }} @endif
@if ($errors->has('aadhar_number')) {{ $errors->first('aadhar_number') }} @endif
@if ($errors->has('pan_number')) {{ $errors->first('pan_number') }} @endif
@if ($errors->has('designation')) {{ $errors->first('designation') }} @endif
@if ($errors->has('department')) {{ $errors->first('department') }} @endif
@if ($errors->has('gender')) {{ $errors->first('gender') }} @endif
@if ($errors->has('dob')) {{ $errors->first('dob') }} @endif
@if ($errors->has('age')) {{ $errors->first('age') }} @endif
@if ($errors->has('marital_status')) {{ $errors->first('marital_status') }} @endif
@if ($errors->has('nationality')) {{ $errors->first('nationality') }} @endif
@if ($errors->has('native_state')) {{ $errors->first('native_state') }} @endif
@if ($errors->has('date_of_confirmation')) {{ $errors->first('date_of_confirmation') }} @endif
@if ($errors->has('height')) {{ $errors->first('height') }} @endif
@if ($errors->has('weight')) {{ $errors->first('weight') }} @endif

Address Details :-

Account Details :-

Educational Qualification :-

@if ($errors->has('degree')) {{ $errors->first('degree') }} @endif
@if ($errors->has('year_of_passing')) {{ $errors->first('year_of_passing') }} @endif
@if ($errors->has('institution')) {{ $errors->first('institution') }} @endif
@if ($errors->has('percentage')) {{ $errors->first('percentage') }} @endif
@if ($errors->has('experience_or_fresher')) {{ $errors->first('experience_or_fresher') }} @endif
@if ($errors->has('total_experience')) {{ $errors->first('total_experience') }} @endif
@if ($errors->has('last_ctc')) {{ $errors->first('last_ctc') }} @endif

Previous Employer Details :-

@if ($errors->has('company_name')) {{ $errors->first('company_name') }} @endif
@if ($errors->has('location')) {{ $errors->first('location') }} @endif
@if ($errors->has('industry_type')) {{ $errors->first('industry_type') }} @endif
@if ($errors->has('prev_designation')) {{ $errors->first('prev_designation') }} @endif
@endsection