@if (session('success'))
{{ __('Success') }}
{{ session('success') }}
@endif
@if (session('error'))
{{ __('Error') }}
{{ session('error') }}
@endif
@if (session('status') == 'profile-information-updated')
{{ __('Success') }}
{{ __('Profile information updated successfully.') }}
@endif
@if (session('status') == 'password-updated')
{{ __('Success') }}
{{ __('Password updated successfully.') }}
@endif
@if (session('status') == 'two-factor-authentication-disabled')
{{ __('Success') }}
{{ __('Two factor Authentication has been disabled.') }}
@endif
@if (session('status') == 'two-factor-authentication-enabled')
{{ __('Success') }}
{{ __('Two factor Authentication has been enabled.') }}
@endif
@if (session('status') == 'recovery-codes-generated')
{{ __('Success') }}
{{ __('Regenerated Recovery Codes Successfully.') }}
@endif