You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

55 lines
1.6 KiB

<?php
namespace App\Http\Controllers\Auth;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
class ChangePasswordController extends Controller
{
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('auth');
}
public function getChangePassword()
{
return view('auth.passwords.change');
}
protected function postChangePassword(Request $req)
{
$this->validate($req, [
'old_password' => 'required',
'password' => 'required|between:6,15|confirmed',
'password_confirmation' => 'required',
], [
'old_password.required' => 'Password lama harus diisi.',
'password.required' => 'Password baru harus diisi.',
'password.between' => 'Password baru harus antara 6 - 15 karakter.',
'password.confirmed' => 'Konfirmasi password baru tidak sesuai.',
'password_confirmation.required' => 'Konfirmasi password baru harus diisi.',
]);
$input = $req->except('_token');
if (app('hash')->check($input['old_password'], auth()->user()->password)) {
$user = auth()->user();
$user->password = $input['password'];
$user->save();
flash()->success(trans('auth.old_password_success'));
return back();
}
flash()->error(trans('auth.old_password_failed'));
return back();
}
}