我目前正在使用个人资料页面,用户可以在其中更改密码。我在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]);
}
我在用户模型
的资源路径上方的web.php
中创建了这条新路线
Route::put('users/{user}', 'UserController@changePassword')->name('users.changePassword');
每次点击提交按钮,我都会收到MethodNotAllowedHttpException
。我认为问题是路线,但我不确定。除了发送电子邮件之外,是否还有Laravel功能,因为我希望用户在不使用电子邮件的情况下更改其密码。谢谢!
这是我的表格
{!! Form::model($employee, ['method'=>'PUT', 'route'=>['users.changePassword', $employee]]) !!}
答案 0 :(得分:0)
而不是放置,请在您的路线中使用post,如下所示。
Route::post('users/{user}', 'UserController@changePassword')->name('users.changePassword');
以你的形式,你通过了" _方法" &安培; CSRF令牌(如果您已禁用CSRF,则不需要CSRF,但我建议始终使用它)?
如果您使用表单和HTML类(ServiceProviders)来创建HTML&刀片中的表格,如下所示。
{!! Form::model($employee, ['method' => 'POST','route' => ['users.changePassword']]) !!}
--- Your Fields Code will go here ----
{!! Form::close() !!}
希望它有所帮助!!
答案 1 :(得分: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>
答案 2 :(得分:0)
您是否为路线设置了参数?
{!! Form::Model($user, ['action' => ['UserController@changePassword', $user->id],'method' => 'PUT']) !!}
{!! Form::close() !!}
答案 3 :(得分: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>
我希望我的回答可以帮助你....