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

Manage your account

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

{{ $account->email }}

@else

No email yet

@endif
Manage my devices

See and delete the devices linked to your account

@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

@endif @endsection