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

Profile
First Name
{{ $personnel->first_name }}
Middle Name @if($personnel->middle_name != null)
{{ $personnel->middle_name }}
@else

N/A

@endif
Last Name
{{ $personnel->last_name }}
Suffix @if($personnel->suffix != null)
{{ $personnel->suffix }}
@else

N/A

@endif
Type

{{ $personnel->type }}

Sex

{{ $personnel->sex }}

Civil Status

{{ $personnel->civil_status }}

Citizenship

{{ $personnel->citizen }}

Height

{{ $personnel->height }} cm

Weight

{{ $personnel->weight }} kg

Blood Type

{{ $personnel->blood_type }}

Date of Birth

{{ $personnel->date_of_birth }}

Permanent Address

{{ $personnel->permanent_address }}

Current Address

{{ $personnel->current_address }}

Birthplace

{{ $personnel->birthplace }}

Mode of Payment

{{ $personnel->mode_of_payment }}

Location

{{ $personnel->location }}

@include('personnels.basic')
@include('personnels.files')
@include('personnels.others')
@section('script') @endsection @endsection