edit.html.php 297 B

123456
  1. <?= $this->form->create($profile); ?>
  2. <?= $this->form->field('firstname', array('type' => 'text')); ?>
  3. <?= $this->form->field('lastname', array('type' => 'text')); ?>
  4. <?= $this->form->field('birthday', array('type' => 'text')); ?>
  5. <?= $this->form->submit('save'); ?>
  6. <?= $this->form->end(); ?>