@extends('layouts.app') @section('title', 'Security Settings') @section('content')

Security Settings

Manage your password, PIN, and security preferences

@if(session('success')) @endif
Change Password
@csrf
@error('current_password')
{{ $message }}
@enderror
@error('new_password')
{{ $message }}
@enderror
Transaction PIN
@csrf @if($user->transaction_pin)
@error('current_pin')
{{ $message }}
@enderror
@else
You haven't set up a transaction PIN yet. Set one now for secure transactions.
@endif
@error('new_pin')
{{ $message }}
@enderror
Login PIN
@csrf @if($user->login_pin)
@error('current_login_pin')
{{ $message }}
@enderror
@else
Set up a login PIN for additional security when accessing your account.
@endif
@error('new_login_pin')
{{ $message }}
@enderror
Security Score
{{ $user->getSecurityScore() }}%
Email Verified
Phone Verified
KYC Completed
Transaction PIN
Login PIN
Security Actions

If you suspect unauthorized access to your account, you can logout from all devices.

@csrf
@endsection