- Translated UI elements to Indonesian for better localization. - Improved layout by introducing Card components for better visual structure. - Removed unnecessary imports and props related to passkeys and two-factor authentication. - Updated tests to cover new password update scenarios and validation rules. - Ensured proper redirection and error handling for unauthorized access to security settings. - Enhanced user experience by adding success flash messages on password updates.
16 lines
285 B
PHP
16 lines
285 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Settings;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use Inertia\Inertia;
|
|
use Inertia\Response;
|
|
|
|
class PermissionController extends Controller
|
|
{
|
|
public function edit(): Response
|
|
{
|
|
return Inertia::render('settings/permissions');
|
|
}
|
|
}
|