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

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

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

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

@if (space()->phone_registration)

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

@endif

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

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

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

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

person {{ __('Information') }}

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

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

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

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

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

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

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

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