Title(), 'h1');
echo $this->Form->Open();
echo $this->Form->Errors();
?>
-
Form->Label('Name', 'Name');
echo $this->Form->TextBox('Name');
?>
-
Form->Label('Description', 'Description');
echo $this->Form->TextBox('Description');
?>
-
Form->Label('Role Award', 'Role');
echo $this->Form->Dropdown('Role', $this->Data('Roles'), array('IncludeNULL' => TRUE));
?>
-
Form->Label('Points Required', 'Level');
echo $this->Form->TextBox('Level');
?>
-
Form->Label('Automatically Award', 'Enabled');
echo $this->Form->CheckBox('Enabled');
?>
Form->Close('Save');