-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclient_accounts_editach.pdt
33 lines (28 loc) · 1.03 KB
/
client_accounts_editach.pdt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<div class="col-md-3">
<?php echo ($navigation ?? null); ?>
</div>
<div class="col-md-9">
<div class="row">
<div class="col-md-12">
<?php
echo (isset($message) ? $message : null);
$this->WidgetClient->clear();
$this->WidgetClient->create($this->_('ClientAccounts.editach.boxtitle_editach', true));
$this->WidgetClient->startBody();
$this->Form->create(null, ['class' => 'disable-on-submit']);
// Set partials
echo (isset($contact_info) ? $contact_info : null);
?>
<hr />
<?php echo (isset($ach_info) ? $ach_info : null);?>
<button type="submit" class="btn btn-light float-right">
<i class="fas fa-edit"></i> <?php $this->_('ClientAccounts.editach.field_accountsubmit');?>
</button>
<?php
$this->Form->end();
$this->WidgetClient->endBody();
$this->WidgetClient->end();
?>
</div>
</div>
</div>