{{ __('Profile') }}

Account Access

Sign out of your vehicle account securely.

@csrf
@include('profile.partials.update-profile-information-form')
@include('profile.partials.update-password-form')
@include('profile.partials.delete-user-form')
@unlessrole('Vehicle')

{{ __('Login History') }}

{{ __('Your recent login history across devices.') }}

@if(isset($recentLogins) && $recentLogins->isNotEmpty())
@foreach($recentLogins as $login) @endforeach
Date & Time Device
{{ \Carbon\Carbon::parse($login->login_datetime)->format('d M Y h:i A') }} {{ $login->device_name }}
@else

No login history available.

@endif
@endunless

{{ __('Log Out') }}

{{ __('Once you log out, you will need to enter your credentials again to access the vehicle management system.') }}

@csrf