@extends('admin.include.main') @section('content')
@if ($errors->any())
@endif
@csrf
@if ($errors->has('staff_type'))
{{ $errors->first('staff_type') }}
@endif
Position
@if ($errors->has('position'))
{{ $errors->first('position') }}
@endif
{{--
Job Type--}}
Salary Grade:
@if ($errors->has('salary_grade_id'))
{{ $errors->first('salary_grade_id') }}
@endif
First Name
@if ($errors->has('fname'))
{{ $errors->first('fname') }}
@endif
Middle Name
Last Name*
@if ($errors->has('lname'))
{{ $errors->first('lname') }}
@endif
Address*
@if ($errors->has('address'))
{{ $errors->first('address') }}
@endif
Mobile:*
@if ($errors->has('mobile'))
{{ $errors->first('mobile') }}
@endif
Phone(Optional)
@if ($errors->has('phone'))
{{ $errors->first('phone') }}
@endif
Email*
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
Nationality*
@if ($errors->has('nationality'))
{{ $errors->first('nationality') }}
@endif
Staff Salary*
@if ($errors->has('salary'))
{{ $errors->first('salary') }}
@endif
Fathers Name:*
@if ($errors->has('tf_name'))
{{ $errors->first('tf_name') }}
@endif
Mothers Name:*
@if ($errors->has('tm_name'))
{{ $errors->first('tm_name') }}
@endif
Gender:*
@if ($errors->has('gender'))
{{ $errors->first('gender') }}
@endif
Marital Status:*
@if ($errors->has('marital'))
{{ $errors->first('marital') }}
@endif
{{--
Marital Status:*
--}}
Password*
Password Confirmation*
Staff Picture*
@if ($errors->has('image'))
{{ $errors->first('image') }}
@endif
Citizenship*
@if ($errors->has('t_citizenship'))
{{ $errors->first('t_citizenship') }}
@endif
Staff CV:*
@if ($errors->has('cv'))
{{ $errors->first('cv') }}
@endif
@if ($errors->has('blood'))
{{ $errors->first('blood') }}
@endif
Date of Birth:*
@if ($errors->has('tdob'))
{{ $errors->first('tdob') }}
@endif
Date Of Join:*
@if ($errors->has('j_date'))
{{ $errors->first('j_date') }}
@endif
Others
@endsection