@section('title') User Profile @endsection @section('breadcrumbs') {{ Breadcrumbs::render('user-management.users.show', $user) }} @endsection
@if($user->avatar) image @else
{{ substr($user->name, 0, 1) }}
@endif
{{ $user->name }}
@foreach($user->roles as $role)
{{ ucwords($role->name) }}
@endforeach
{{--
Edit
--}}
Email
Language
English
Last Login
{{ date('d M Y h:i:s A',strtotime($user->last_login_at)) }}
Last Login IP
{{ $user->last_login_ip }}

Profile

Email {{ $user->email }}
Password ******
{{--

{{ __('profile.2fa') }}

{{ __('profile.2fa_label') }}
@if($user->two_fa_type)
{{ __('profile.authentication_by').' '. Str::ucfirst($user->two_fa_type) }}
@endif

Email Notifications

Choose what messages you’d like to receive for each of your accounts.
{{ __('profile.login_history') }}
@foreach($loginHistories as $loginHistory) @php $agentInfo = json_decode($loginHistory->device, true); @endphp
@if ($loginHistory->isMobile()) @else @endif
{{ $loginHistory->device }}

{{ !empty($loginHistory->location)?$loginHistory->location:'Local' }} - {{ $loginHistory->login_at; }}

@endforeach
--}}
@include('backend.pages.apps.user-management.users.modals._update-details') @include('backend.pages.apps.user-management.users.modals._add-schedule') @include('backend.pages.apps.user-management.users.modals._add-one-time-password') @include('backend.pages.apps.user-management.users.modals._update-password') @include('backend.pages.apps.user-management.users.modals._add-auth-app') @include('backend.pages.apps.user-management.users.modals._add-task') @push('scripts') @endpush