Skip to content

Commit

Permalink
Change form fields order for Employee form
Browse files Browse the repository at this point in the history
  • Loading branch information
thecodeholic committed Oct 29, 2019
1 parent 2b0a211 commit 767d096
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions views/user/_form.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,6 @@
<div class="user-form">

<?php $form = ActiveForm::begin() ?>

<div class="row">
<div class="col-md-3">
<?php echo $form->field($model, 'username') ?>

</div>
<div class="col-md-3">
<?php echo $form->field($model, 'email') ?>

</div>
</div>
<div class="row">
<div class="col-md-3">
<?php echo $form->field($model, 'firstname') ?>
Expand All @@ -52,7 +41,15 @@
</div>
</div>

<div class="row">
<div class="col-md-3">
<?php echo $form->field($model, 'username') ?>

</div>
<div class="col-md-3">
<?php echo $form->field($model, 'email') ?>
</div>
</div>
<div class="row">
<div class="col-md-3">
<?php echo $form->field($model, 'days_left')->textInput() ?>
Expand Down

0 comments on commit 767d096

Please sign in to comment.