首页 文章

Laravel 5.4更改密码

提问于
浏览
0

我目前正在处理用户可以更改其密码的 Profiles 页面 . 我在UserController中创建了一个新函数 changePassword()

public function changePassword(Request $request, User $employee) {
    $validator = Validator::make($data, [
        'password' => 'required|string|min:6|confirmed',
        'password_confirmation' => 'required|string|min:6|same:password'
    ]);

    if ($validator->fails()) {
        Session::flash('error', "Fill-out the form correctly. Try again!");
        return redirect()->back()->withErrors($validator);
    }

    $employee->password = bcrypt($request->password);
    $employee->save();
    return view('users.show', ['employee'=>$employee]);
}

我在User模型的资源路径上方的 web.php 中创建了这条新路线

Route::put('users/{user}', 'UserController@changePassword')->name('users.changePassword');

每次单击“提交”按钮,我都会收到 MethodNotAllowedHttpException . 我认为问题是路线,但我不确定 . 除了发送电子邮件之外,是否还有Laravel功能,因为我希望用户在不使用电子邮件的情况下更改其密码 . 谢谢!

这是我的表格

{!! Form::model($employee, ['method'=>'PUT', 'route'=>['users.changePassword', $employee]]) !!}

4 回答

  • 0

    而不是放,在您的路线中使用post如下 .

    Route::post('users/{user}', 'UserController@changePassword')->name('users.changePassword');
    

    在您的表单中,您传递了“_method”和CSRF令牌(如果您已禁用CSRF,则不需要CSRF,但我建议始终使用它)?

    如果您使用表单和HTML类(ServiceProviders)在刀片中创建HTML和表单,请使用以下方法 .

    {!! Form::model($employee, ['method' => 'POST','route' => ['users.changePassword']]) !!}
    
    --- Your Fields Code will go here ----
    
    {!! Form::close() !!}
    

    希望能帮助到你!!

  • 0

    您需要在表单字段中添加 PUT http动词 . 如果你使用laravelcollective:

    {!! Form::model($employee, ['method' => 'put','route' => 
    ['users.changePassword']]) !!}
    
    --- Your Fields Code will go here ----
    
    {!! Form::close() !!}
    

    要么

    <form action="your-url" method="POST">
    
     {{ method_field('PUT') }}
    
    </form>
    
  • 0

    你为路线设置参数吗?

    {!! Form::Model($user, ['action' => ['UserController@changePassword', $user->id],'method' => 'PUT']) !!}
    
    {!! Form::close() !!}
    
  • 0

    试试这个....

    这段代码在我的项目中使用laravel 5.3

    ubahprofilecontroller.php

    public function updatePwd($id, Request $request)
           {
             //cek password lama
               $messages = array(
                   'password_lama.required'=>'Harap masukkan password',
                   'password_baru.required' => 'Password baru tidak boleh kosong',
                   'ulangi_password.required' => 'Harap ketikkan ulang password baru',
                   'ulangi_password.same' => 'Password baru dan konfirmasi password tidak cocok'
               );
    
               $rules = array (
                 'password_lama'=> 'required',
                 'password_baru'=> 'required',
                 'ulangi_password'=> 'required|same:password_baru'
               );
               $validator = Validator::make ( Input::all (), $rules, $messages );
    
               if($validator->fails())
                 {
                     /*return Redirect('edit_password')
                         ->withErrors($validator);*/
                         $password ='password';
                         return redirect('ubahPwd')->withErrors($validator)->withInput();
                 }
               else
                 {
                   $check = User::where('id',$id)->first();
                   if (Input::get('password_lama') == $check->value)
                   {
                           if(Input::get('password_baru') == Input::get('ulangi_password'))
                             {
                               $check -> password = bcrypt(Input::get('password_baru'));
                               $check -> salt_password = Input::get('password_baru');
                               // save our duck
                               $check->save();
    
                                 /*$msg = array('msg' => 'Password changed Successfully');*/
                                 return redirect('ubahPwd')->with('success','Password berhasil diubah');
                             }
                             else
                             {
                                 /*$msg = array('msg' => 'New password and Confirm password did not match');*/
                                 return redirect('ubahPwd')->with('salah','Password baru dan konfirmasi password tidak sama');
                             }
                   }
                   else
                   {
                     /*$msg = array('msg' => 'Current password is incorrect');*/
                     /*return Redirect('edit_password')
                                   ->with('status-failed', 'Current password is incorrect');*/
                        return redirect('ubahPwd')->with('salah','Password lama salah');
                   }
                 }
          }
    

    profile.blade.php

    <form class="form-horizontal" action="{{ url('/ubahPassword/update',Auth::user()->id )}}" method="POST">
                  <<div class="content" style="padding-left:50px;padding-right:50px">
    
                    <div class="form-group">
                        {{ csrf_field() }}
                      <label for="id" class="col-sm-3 control-label">ID</label>
                      <div class="col-sm-2">
                        <input type="text" class="form-control" id="id"  name="id" value="{{ Auth::user()->id }}" readonly>
                      </div>
                    </div>
    
                    <div class="form-group">
                      <label for="username" class="col-sm-3 control-label">Password Lama</label>
                      <div class="col-sm-6">
                        <input type="password" class="form-control" id="username" name="password_lama">
                        @if ($errors->has('password_lama')) <p class="help-block" style="color:red;">{{ $errors->first('password_lama') }}</p> @endif
                      </div>
                    </div>
    
                    <div class="form-group">
                      <label for="inputEmail3" class="col-sm-3 control-label">Password baru</label>
                      <div class="col-sm-5">
                        <input type="password" class="form-control" id="email" name="password_baru">
                        @if ($errors->has('password_baru')) <p class="help-block" style="color:red;">{{ $errors->first('password_baru') }}</p> @endif
                      </div>
                    </div>
    
                    <div class="form-group">
                      <label for="inputEmail3" class="col-sm-3 control-label">Ulangi Password</label>
                      <div class="col-sm-5">
                        <input type="password" class="form-control" id="email" name="ulangi_password">
                        @if ($errors->has('ulangi_password')) <p class="help-block" style="color:red;">{{ $errors->first('ulangi_password') }}</p> @endif
                      </div>
                    </div>
    
                  <div class="form-group">
                    <button type="submit" class="btn btn-info pull-right col-sm-3">Simpan</button>
                  </div>
                </div>
              </form>
    

    我希望我的回答可以帮助你....

相关问题