mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-04-18 05:08:27 +00:00
11 lines
No EOL
474 B
PHP
11 lines
No EOL
474 B
PHP
@if ($account->activated)
|
|
<span class="badge badge-success" title="{{ __('Activated') }}"><i class="ph ph-check"></i></span>
|
|
@endif
|
|
@if ($account->superAdmin)
|
|
<span class="badge badge-error" title="{{ __('Super Admin') }}">Super Adm.</span>
|
|
@elseif ($account->admin)
|
|
<span class="badge badge-primary" title="{{ __('Admin') }}">Adm.</span>
|
|
@endif
|
|
@if ($account->blocked)
|
|
<span class="badge badge-error" title="{{ __('Blocked') }}"><i class="ph ph-prohibit"></i></span>
|
|
@endif |