Created
July 18, 2019 13:38
-
-
Save maiconpinto/c906bdad08ea6646ed5ea77950e25bb0 to your computer and use it in GitHub Desktop.
Code example for issue 75
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$this->Form->create(null, ['role' => 'form', 'class' => 'form-horizontal']); ?> | |
<div class="box-body"> | |
<?php | |
echo $this->Form->control('user_full_name', ['label' => 'User Name']); | |
echo $this->Form->control('username', ['label' => 'Login ID']); | |
echo $this->Form->control('user_email', ['label' => 'User Email']); | |
echo $this->Form->control('user_mobile_no', ['label' => 'User Mobile No.']); | |
echo $this->Form->control('password', ['type' => 'password', 'label' => 'User Password']); | |
?> | |
</div> | |
<?php | |
echo $this->Form->submit(__('Submit')); | |
$this->Form->end(); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thank you for your support ill check