Skip to content

Commit

Permalink
Move submit button position on edit user page
Browse files Browse the repository at this point in the history
  • Loading branch information
nafiesl committed Jun 21, 2020
1 parent 852dac1 commit ae8370a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions resources/views/users/edit.blade.php
Expand Up @@ -81,6 +81,10 @@
</div>
</div>
</div>
<div class="text-right">
{{ Form::submit(__('app.update'), ['class' => 'btn btn-primary']) }}
{{ link_to_route('users.show', __('app.cancel'), [$user->id], ['class' => 'btn btn-default']) }}
</div>
</div>
<div class="col-md-4">
<div class="panel panel-default">
Expand All @@ -98,10 +102,6 @@
{!! FormField::password('password', ['label' => __('auth.password'), 'placeholder' => '******', 'value' => '']) !!}
</div>
</div>
<div class="text-right">
{{ Form::submit(__('app.update'), ['class' => 'btn btn-primary']) }}
{{ link_to_route('users.show', __('app.cancel'), [$user->id], ['class' => 'btn btn-default']) }}
</div>
</div>
{{ Form::close() }}
<div class="col-md-4">
Expand Down

0 comments on commit ae8370a

Please sign in to comment.