Skip to content

Commit

Permalink
Merge pull request #402 from nasirkhan/update
Browse files Browse the repository at this point in the history
Update
  • Loading branch information
nasirkhan authored Mar 26, 2023
2 parents 81fd927 + daf0502 commit c7fdd73
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
8 changes: 3 additions & 5 deletions resources/views/backend/users/changePassword.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<hr>

<div class="row">
<div class="row mb-3">
<div class="col">
<strong>
@lang('Name'):
Expand All @@ -46,7 +46,7 @@
<div class="col">
{{ html()->form('PATCH', route('backend.users.changePasswordUpdate', $$module_name_singular->id))->class('form-horizontal')->open() }}

<div class="form-group row">
<div class="form-group row mb-3">
{{ html()->label(__('labels.backend.users.fields.password'))->class('col-md-2 form-control-label')->for('password') }}

<div class="col-md-10">
Expand All @@ -56,9 +56,8 @@
->required() }}
</div>
</div>
<!--form-group-->

<div class="form-group row">
<div class="form-group row mb-3">
{{ html()->label(__('labels.backend.users.fields.password_confirmation'))->class('col-md-2 form-control-label')->for('password_confirmation') }}

<div class="col-md-10">
Expand All @@ -68,7 +67,6 @@
->required() }}
</div>
</div>
<!--form-group-->

<div class="row">
<div class="col">
Expand Down
6 changes: 2 additions & 4 deletions resources/views/backend/users/changeProfilePassword.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<div class="col">
{{ html()->form('PATCH', route('backend.users.changeProfilePasswordUpdate', $user->id))->class('form-horizontal')->open() }}

<div class="form-group row">
<div class="form-group row mb-3">
{{ html()->label(__('labels.backend.users.fields.password'))->class('col-md-2 form-control-label')->for('password') }}

<div class="col-md-10">
Expand All @@ -60,9 +60,8 @@
->required() }}
</div>
</div>
<!--form-group-->

<div class="form-group row">
<div class="form-group row mb-3">
{{ html()->label(__('labels.backend.users.fields.password_confirmation'))->class('col-md-2 form-control-label')->for('password_confirmation') }}

<div class="col-md-10">
Expand All @@ -72,7 +71,6 @@
->required() }}
</div>
</div>
<!--form-group-->

<div class="row">
<div class="col">
Expand Down

0 comments on commit c7fdd73

Please sign in to comment.