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

Manage your account

Change my current account email
@if (!empty($account->email))

{{ $account->email }}

@else

No email yet

@endif
@if (config('app.devices_management') == true)
Manage my devices

See and delete the devices linked to your account

@endif
@if ($account->passwords()->count() > 0)
Change my password
@else
Set my password
@endif
@if ($account->passwords()->where('algorithm', 'SHA-256')->exists())

SHA-256 password configured

@else

MD5 password only

@endif
Delete my account

Remove your account from our service

@if($account->isAdmin())

Admin area

Accounts

Manage the Flexisip accounts

Account types

Manage the account types

Statistics

Show some registration statistics

API Key

As an administrator you can generate an API key and use it to request the different API endpoints, check the related API documentation to know how to use that key.

{!! Form::open(['route' => 'admin.api_key.generate']) !!}
apiKey) value="{{ $account->apiKey->key }}" @endif >
{!! Form::close() !!} @endif

Account information

SIP address: sip:{{ $account->identifier }}
Username: {{ $account->username }}
Domain: {{ $account->domain }}

@if (!empty(config('app.proxy_registrar_address'))) Proxy/registrar address: sip:{{ config('app.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