Self Identity

@if($identity)
Your Person DID @php $cls = ['unverified'=>'badge bg-secondary','verified'=>'badge bg-success','revoked'=>'badge bg-danger']; @endphp {{ ucfirst($identity->verification_status) }}
Label{{ $identity->label }}
DID (holder){{ $identity->did }}
Method / Alg{{ $identity->method }} / {{ $identity->alg }}
Created{{ $identity->created_at->format('Y-m-d H:i') }}
@if($identity->verification_status !== 'verified')
@csrf
@else Create VC @endif @if(!$identity->public_alias_enabled)
@csrf
@else Open did:web doc
@csrf @method('DELETE')
@endif
{{-- Pretty JSON: DID Document (holder did:key) --}}
Holder DID Document (did:key)
{{ json_encode($identity->did_document ?? [], JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) }}
{{-- Pretty JSON: Public Alias did:web (if enabled) --}} @if($didWebDoc)
Public Alias DID Document (did:web)
{{ json_encode($didWebDoc, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) }}
@endif {{-- Person Attributes --}}
Person Attributes
{{ json_encode($identity->person_attributes ?? [], JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) }}
@else

You do not have a self identity yet.

@csrf
@endif
{{-- Delete modal --}} {{-- Verify modal --}} @php $needsInfo = !auth()->user()->name || !auth()->user()->email || !auth()->user()->personal_code_hash; @endphp