@extends('layouts.admin') @section('title', __('Account security')) @section('content')

{{ __('Change password') }}

{{ app()->isLocale('ar') ? 'استخدم 6 أحرف على الأقل تحتوي على أحرف كبيرة وصغيرة وأرقام ورموز.' : 'Use at least 6 characters with upper and lowercase letters, a number, and a symbol.' }}

@csrf @method('PUT')
@error('current_password', 'updatePassword') {{ $message }} @enderror
@error('password', 'updatePassword') {{ $message }} @enderror
{{-- Action Buttons Row: Compact, Same Height, Side by Side on the same line --}}
@can(\App\Modules\AccessControl\Domain\PermissionName::DashboardView->value) {{ __('Continue to administration') }} @endcan
@endsection