@extends('cms.layouts.main') @section('content') @include('cms.layouts.headers.partials', ['title' => 'View Record'])

{{ $page_info['title'] }}

  • First Name

    {{ $row->first_name }}


  • Last Name

    {{ $row->last_name }}


  • Father Name

    {{ $row->father_name }}


  • ID Number

    {{ $row->id_number }}


  • Marital Status

    {{ $row->MaritalStatus ? $row->MaritalStatus->title : '' }}


  • Date of Birth

    {{ $row->date_of_birth }}


  • Country of Birth

    {{ $row->CountryOfBirth->name }}


  • City of Residence

    {{ $row->CityOfResidence->title }}


  • Street

    {{ $row->street }}


  • Building

    {{ $row->building }}


  • Mobile Number

    {{ $row->mobile_number }}


  • Phone Number

    {{ $row->phone_number }}


  • Email

    {{ $row->email }}


  • Wallet

    {{ $row->wallet_formated }}


  • Created at

    {{ date('d M Y - h:i A', strtotime($row->created_at)) }}


  • Updated at

    {{ date('d M Y - h:i A', strtotime($row->updated_at)) }}

@include('cms.layouts.footers.auth')
@endsection