Skip to content

Instantly share code, notes, and snippets.

@maiconpinto
Created July 18, 2019 13:38
Show Gist options
  • Save maiconpinto/c906bdad08ea6646ed5ea77950e25bb0 to your computer and use it in GitHub Desktop.
Save maiconpinto/c906bdad08ea6646ed5ea77950e25bb0 to your computer and use it in GitHub Desktop.
Code example for issue 75
<?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();
?>
@veera1908
Copy link

thank you for your support ill check

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment