@extends('layouts.app') @section('title', 'Profile') @push('styles') @endpush @section('content')

Profile

@if(session('success'))
{{ session('success') }}
@endif
{{-- Avatar Area --}}
@if(auth()->user()->avatar_url) Avatar @else {{ strtoupper(substr(auth()->user()->name ?? 'U', 0, 2)) }} @endif
{{-- Meta Info --}}
Tenseal ID
#{{ auth()->user()->id ?? '000000' }}
Member Since
{{ auth()->user()->created_at?->format('M d, Y') ?? 'N/A' }}
Verification Status
@if(auth()->user()->is_verified ?? false) Verified @else Unverified Verify Now @endif
Trust Score
{{ auth()->user()->trust_score ?? 'N/A' }}
{{-- Profile Form --}}
@csrf @method('PUT')
@error('name') {{ $message }} @enderror
@error('phone') {{ $message }} @enderror
@error('bio') {{ $message }} @enderror
@endsection @push('scripts') @endpush