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'); } }