@extends('layouts.app') @section('content')

{{ $p->person_attributes['displayName'] ?? $p->label ?? 'Person' }}

DID: {{ $p->public_alias_did ?: $p->did }}
Country: {{ $p->person_attributes['country'] ?? '—' }}
Status: {{ $p->verification_status === 'revoked' ? 'revoked' : 'active' }}
Last verified: {{ optional($p->verified_at)->toDateString() ?? '—' }}
Person JSON Open DID Doc
{{ json_encode($p->person_attributes, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES) }}
@endsection