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

{{ __('Update Pasword') }}

{{ __('Change Password') }}

@csrf
Cancel
@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