@extends('layouts.user') @section('content') @push('css') @endpush
Personal Information

Name : {{auth_user('name')}}
User ID : {{auth_user('user_id')}}
Status : {{auth_user('status')? 'Active': 'Inactive'}}
Father Name : {{auth_user('father_name')}}
Nominee Name : {{auth_user('nominee_name')}}
Relation with Nominee : {{auth_user('relation_with_nominee')}}
Mother Name : {{auth_user('mother_name')}}
Mobile : {{auth_user('phone_number')}}
Date of Birth : {{auth_user('date_of_birth') ? date('d M Y',strtotime(auth_user('date_of_birth'))):''}}
Gender : {{auth_user('gender')}}
National ID : {{auth_user('nid_no')}}
Email : {{auth_user('email')}}
Religion : {{auth_user('religion')}}
Blood Group : {{auth_user('blood_group')}}
Address : {{auth_user('address')}}
Refer to you : {{auth_user('refer_id')}}
Join Date : {{ date('d M Y',strtotime(auth_user('created_at'))) }}
Join Age : {{ now()->parse(auth_user('created_at'))->diff(now())->format('%y Y, %m M and %d D') }}
@push('alljs') @if ($message = Session::get('error')) @endif @if ($message = Session::get('success')) @endif @endpush @endsection