{{ $org->name }}

@if(session('error'))
{{ session('error') }}
@endif @include('organizations._tabs', ['organization' => $org])
Organization details @php $cls=['unverified'=>'badge bg-secondary','verified'=>'badge bg-success','revoked'=>'badge bg-danger']; @endphp Status: {{ ucfirst($org->verification_status) }}
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
@error('registration_number')
{{ $message }}
@enderror
@error('country')
{{ $message }}
@enderror
Fill in all fields to keep the organization verified and enable VC issuance.
@if($org->public_alias_enabled) @endif
DID (holder) {{ $org->did }}
Verification method {{ strtoupper($org->method ?? '') }}
Public alias {{ $org->public_alias_did }}
Holder DID Document (did:key)
{{ json_encode($org->did_document ?? [], JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) }}
@if($didWebDoc ?? null)
Public Alias DID Document (did:web)
{{ json_encode($didWebDoc, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES) }}
@endif