@php $extend = (auth()->user()->type == 'user')? 'frontend.layouts.app' : 'backend.layouts.app'; @endphp @extends($extend) @section('title', __('My Account')) @section('content')
Account Setting

My Profile

You have full control to manage your own account setting.

Personal Information

Basic info, like your name and address, that you use on {{ env('APP_NAME') }}.

Profile Image
Name {{ $logged_in_user->name }}
Email {{ $logged_in_user->email }}
Student/Staff ID {{ $logged_in_user->identification }}
Phone Number {{ $logged_in_user->phone_number }}
Address {{ $logged_in_user->address }}
Registered Date @displayDate($logged_in_user->created_at) ({{ $logged_in_user->created_at->diffForHumans() }})
Last Update @displayDate($logged_in_user->updated_at) ({{ $logged_in_user->updated_at->diffForHumans() }}
Account Setting

Your personalized preference allows you best use.

Password Last Change At {{ (is_null($logged_in_user->password_changed_at))? "Not Yet" : $logged_in_user->password_changed_at->diffForHumans() }}
@endsection @push('after-scripts') @endpush