@extends('layouts.main', ['grid' => true]) @section('content')

{{ __('My Account') }}

{{ __('Welcome on :app_name' , ['app_name' => space()->name]) }}

@if (!empty($account->email)) {{ $account->email }} @else {{ __('No email yet') }} @endif {{ __('Edit') }}

@if (space()->phone_registration)

@if (!empty($account->phone)) {{ $account->phone }} @else {{ __('No phone yet') }} @endif {{ __('Edit') }}

@endif

{{ __('Devices') }} {{ __('Manage') }}

{{ __('Password') }} @if ($account->passwords()->count() > 0) {{ __('Edit') }} @else {{ __('Create') }} @endif

{{ __('API Key') }} {{ __('Manage') }}

{{ __('My Account') }} {{ __('Delete') }}

{{ __('Information') }}

{{ __('SIP Adress') }}: sip:{{ $account->identifier }}

{{ __('Username') }}: {{ $account->username }}

{{ __('Domain') }}: {{ $account->domain }}

@if (!empty(space()?->account_proxy_registrar_address))

Proxy/registrar address: sip:{{ space()?->account_proxy_registrar_address }}

@endif @if (!empty(config('app.transport_protocol_text')))

{{ __('Transport') }}: {{ config('app.transport_protocol_text') }}

@endif
@include('parts.account_variables', ['account' => $account]) @endsection