65 lines
1.7 KiB
PHP
65 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use App\Rules\MatchOldPassword;
|
|
use Illuminate\Support\Facades\Hash;
|
|
use Illuminate\Support\Facades\Http;
|
|
use App\User;
|
|
use Carbon\Carbon;
|
|
|
|
class ChangePasswordController extends Controller
|
|
{
|
|
/**
|
|
* Create a new controller instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
$this->middleware('auth');
|
|
}
|
|
|
|
/**
|
|
* Show the application dashboard.
|
|
*
|
|
* @return \Illuminate\Contracts\Support\Renderable
|
|
*/
|
|
public function index()
|
|
{
|
|
|
|
|
|
$auth_user = Auth::user();
|
|
// dd($cawangan_info);
|
|
$cawangan_info = Http::withOptions(['verify' => config('app.api_verify')])->get(config('api.url') . '/api/cawangan/'. $auth_user['cawangan'])->json();
|
|
return view('user.update_password',compact('cawangan_info'));
|
|
}
|
|
|
|
/**
|
|
* Show the application dashboard.
|
|
*
|
|
* @return \Illuminate\Contracts\Support\Renderable
|
|
*/
|
|
public function store(Request $request)
|
|
{
|
|
$auth_user = Auth::user();
|
|
$request->validate([
|
|
'current_password' => ['required', new MatchOldPassword],
|
|
'new_password' => ['required'],
|
|
'new_confirm_password' => ['same:new_password'],
|
|
]);
|
|
|
|
$id = auth()->user()->id;
|
|
|
|
// dd($auth_user['name']);
|
|
|
|
$auth_user = Http::withOptions(['verify' => config('app.api_verify')]) ->post(config('api.url') . '/api/changepassword/' . $auth_user['cawangan'] . '/' . $id, ['nama' => $auth_user['name']])->json();
|
|
|
|
User::find(auth()->user()->id)->update(['password'=> Hash::make($request->new_password)]);
|
|
|
|
return redirect()->route('profile');
|
|
}
|
|
}
|