summaryrefslogtreecommitdiffstats
path: root/views/profile/edit.html.php
blob: 6e0a2b291155de44068b16977fff89ad3bd22ae2 (plain)
1
2
3
4
5
6
<?= $this->form->create($profile); ?>
	<?= $this->form->field('firstname', array('type' => 'text')); ?>
	<?= $this->form->field('lastname', array('type' => 'text')); ?>
	<?= $this->form->field('birthday', array('type' => 'text')); ?>
	<?= $this->form->submit('save'); ?>
<?= $this->form->end(); ?>