SI_Wisata_Gadis/app/Http/Controllers/SettingController.php

86 lines
1.9 KiB
PHP

<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Facades\Auth;
class SettingController extends Controller
{
/**
* Display a listing of the resource.
*/
public function index()
{
return view('admin.setting');
}
/**
* Show the form for creating a new resource.
*/
public function create()
{
//
}
/**
* Store a newly created resource in storage.
*/
public function store(Request $request)
{
//
}
/**
* Display the specified resource.
*/
public function show(string $id)
{
//
}
/**
* Show the form for editing the specified resource.
*/
public function edit(string $id)
{
//
}
/**
* Update the specified resource in storage.
*/
public function update(Request $request)
{
try {
$request->validate([
'current_password' => 'required',
'new_password' => 'required|min:8',
'confirm_password' => 'required|same:new_password',
]);
$user = auth()->user();
// Cek apakah password lama sesuai
if (!Hash::check($request->current_password, $user->password)) {
return back()->withErrors(['current_password' => 'Password lama salah!']);
}
// Update password
$user->update(['password' => Hash::make($request->new_password)]);
return redirect()->route('dashboard')->with('success', 'Password berhasil diubah!');
} catch (\Exception $e) {
return redirect()->route('setting.index')->with('error', 'Password gagal diubah ' . $e->getMessage());
}
}
/**
* Remove the specified resource from storage.
*/
public function destroy(string $id)
{
//
}
}