{{-- resources/views/user/edit.blade.php --}} @extends('layouts.base') @section('title', __('My information')) {{-- Bottom Nav --}} @include('partials.bottom_nav', [ 'bottomTabs' => [ [ 'icon' => "myV_picto.svg", 'label' => __('My waypoints'), 'href' => lr('search'), 'primary' => false, ], ], ]) @section('content') {{-- DEBUG TEMP --}} {{-- @php dd($societies?->pluck('name')); @endphp --}} @php \Log::info('blade:account.edit reached'); $photoUrl = !empty($user->photo) ? Storage::disk('public')->url($user->photo) : null; @endphp
{{ $user->email }}
{{ __('Update your identity, contact details and security information.') }}
{{ __('Monitor who is online and their recent activity (admins only).') }}
| {{ __('User') }} | {{ __('Status') }} | {{ __('Last activity') }} |
|---|---|---|
|
{{ strtoupper(substr($u->name, 0, 1)) }}
{{ $u->name }}
{{ $u->email }} |
@if($u->is_online) {{ __('Online') }} @else {{ __('Offline') }} @endif | @if($u->last_seen) {{ $u->last_seen->diffForHumans() }} @else — @endif |