@extends('../site/layouts.user_panel.app') @section('page_title', __('Setting')) @section('content')

{{ __('Settings') }}

{{ __('Configure your account settings and be secured') }}

{{ __('security settings') }}

{{ __('Login Activities') }}

{{ __('Currently on') }}
{{ $browser . ' ' . $version }}{{ $platform }}

{{ __('Details') }}
@php $uppercase = $lowercase = $number = $symbol = $length = 0; if (env('PASSWORD_STRENGTH') != null && env('PASSWORD_STRENGTH') != '') { $length = filter_var(env('PASSWORD_STRENGTH'), FILTER_SANITIZE_NUMBER_INT); $conditions = explode('|', env('PASSWORD_STRENGTH')); $uppercase = in_array('UPPERCASE', $conditions); $lowercase = in_array('LOWERCASE', $conditions); $number = in_array('NUMBERS', $conditions); $symbol = in_array('SYMBOLS', $conditions); } @endphp @endsection @section('js') @endsection