@extends('layouts.app') @section('style') @endsection @section('content')
New Personnel
@csrf

Personnel Information

@if ($errors->has('first_name'))
{{ $errors->first('first_name') }}
@endif
@if ($errors->has('middle_name'))
{{ $errors->first('middle_name') }}
@endif
@if ($errors->has('last_name'))
{{ $errors->first('last_name') }}
@endif
@if ($errors->has('suffix'))
{{ $errors->first('suffix') }}
@endif
@if ($errors->has('personnel_type'))
{{ $errors->first('personnel_type') }}
@endif
@if ($errors->has('sex'))
{{ $errors->first('sex') }}
@endif
@if ($errors->has('civil_status'))
{{ $errors->first('civil_status') }}
@endif
@if ($errors->has('date_of_birth'))
{{ $errors->first('date_of_birth') }}
@endif
@if ($errors->has('birthplace'))
{{ $errors->first('birthplace') }}
@endif
@if ($errors->has('contact_no'))
{{ $errors->first('contact_no') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('height'))
{{ $errors->first('height') }}
@endif
@if ($errors->has('weight'))
{{ $errors->first('weight') }}
@endif
@if ($errors->has('blood_type'))
{{ $errors->first('blood_type') }}
@endif
@if ($errors->has('citizenship'))
{{ $errors->first('citizenship') }}
@endif
@if ($errors->has('current_address'))
{{ $errors->first('current_address') }}
@endif
@if ($errors->has('permanent_address'))
{{ $errors->first('permanent_address') }}
@endif
@if ($errors->has('photo'))
{{ $errors->first('photo') }}
@endif
@if ($errors->has('sketch'))
{{ $errors->first('sketch') }}
@endif
{{-- Employment Information --}}

Employment Information

@if ($errors->has('employment_date'))
{{ $errors->first('employment_date') }}
@endif
@if ($errors->has('employment_status'))
{{ $errors->first('employment_status') }}
@endif
@if ($errors->has('personnel_status'))
{{ $errors->first('personnel_status') }}
@endif
@if ($errors->has('mode_of_payment'))
{{ $errors->first('mode_of_payment') }}
@endif
@if ($errors->has('location'))
{{ $errors->first('location') }}
@endif
{{-- Security License Number --}}

Security License

@if ($errors->has('license_number'))
{{ $errors->first('license_number') }}
@endif
@if ($errors->has('issued_date'))
{{ $errors->first('issued_date') }}
@endif
@if ($errors->has('expiration_date'))
{{ $errors->first('expiration_date') }}
@endif
@if ($errors->has('issued_at'))
{{ $errors->first('issued_at') }}
@endif
@section('script') @endsection @endsection