@extends('layouts.app') @section('title', 'Account Already Logged In - Game World') @section('content')

{{ __('Account Already Logged In') }}

@if(session('device_info'))
{{ __('Current Active Session') }}
{{ __('Device') }}:
{{ session('device_info') }}
@if(session('ip_address'))
{{ __('IP Address') }}:
{{ session('ip_address') }}
@endif @if(session('login_time'))
{{ __('Last Activity') }}:
{{ session('login_time') }}
@endif
@endif
{{ __('What can you do?') }}
{{ __('Logout Other Device') }}

{{ __('Go to your other device/browser and logout from there') }}

{{ __('Contact Support') }}

{{ __('If you believe this is an error, contact your teacher or administrator') }}

{{ __('This security measure helps protect your account from unauthorized access.') }}
@push('styles') @endpush @endsection