@extends('layouts.app') @section('style') @endsection @section('content')
@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
@if ($errors->has('mode_of_payment'))
{{ $errors->first('mode_of_payment') }}
@endif
@if ($errors->has('location'))
{{ $errors->first('location') }}
@endif
@section('script') @endsection @endsection