flexisip-account-manager/flexiapi/resources/views/admin/account/telephony/show.blade.php
Timothée Jaussoin f1a0eaedc7 Fix FLEXIAPI-458 Aligne the tooltips on the left
Fix FLEXIAPI-459 Makes the form half the width
Fix FLEXIAPI-460 Add conditions to display the dialogs
2026-03-17 17:10:39 +01:00

18 lines
No EOL
467 B
PHP

@extends('layouts.main')
@section('breadcrumb')
@include('admin.parts.breadcrumb.accounts.show', ['account' => $account])
@endsection
@section('content')
<header>
<h1><i class="ph ph-phone"></i> {{ $account->identifier }}</h1>
</header>
@include('admin.account.parts.tabs')
<div class="grid">
<div class="card">
@include('account.call_forwardings.edit', ['account' => $account])
</div>
</div>
@endsection