@extends('layouts.account') @section('breadcrumb') @endsection @section('content') Delete Edit

Account

Id: {{ $account->id }}
Identifier: {{ $account->identifier }}
Email: {{ $account->email }}
DTMF Protocol: @if ($account->dtmf_protocol) {{ $account->resolvedDtmfProtocol }}@endif
@if ($account->alias)Phone number: {{ $account->phone }}
@endif @if ($account->group)Group: {{ $account->group }}
@endif @if ($account->display_name)Display name: {{ $account->display_name }}
@endif

@if ($account->sha256Password) SHA256 @endif
@if ($account->activated) Activated Deactivate @else Unactivated Activate @endif
@if ($account->admin) Admin Remove admin role @else Not Admin Add admin role @endif

External Account

@if ($account->externalAccount)

Identifier: {{ $account->externalAccount->identifier }}

@else Attach an External Account ({{ $external_accounts_count}} left) @endif

Contacts

@foreach ($account->contacts as $contact) @endforeach
{{ $contact->identifier }} Delete
Add

Actions

@if ($account->dtmf_protocol) @foreach ($account->actions as $action) @endforeach
{{ $action->key }} {{ $action->code }} Edit Delete
Add @else

To manage actions, you must configure the DTMF protocol in the account settings.

@endif

Types

@foreach ($account->types as $type) @endforeach
{{ $type->key }} {!! Form::open(['route' => ['admin.account.account_type.destroy', $account, $type->id], 'method' => 'delete']) !!} {!! Form::submit('Delete', ['class' => 'btn btn-sm mr-2']) !!} {!! Form::close() !!}
Add

Provisioning

@if ($account->provisioning_token)

Share the following picture with the user or the one-time-use link bellow.



The following link can only be visited once

Renew the provision link The current one will be unavailable

@else

Generate a provision link

@endif @endsection