@extends('main') @section('body')

{!! __(GetAppText("page.change_password.title")) !!}

{!!__(GetAppText("page.change_password.text")) !!}

@component("components.inputs.input", ["id" => "current_password", "label" => __(GetAppText("current_password")), "type" => "password", "mandatory" => true]) @endcomponent
@component("components.inputs.input_info", ["id" => "new_password", "label" => __(GetAppText("new_password")), "type" => "password", "dataTarget" => "modal_info_complexity_requirements", "mandatory" => true]) @endcomponent
@component("components.inputs.input", ["id" => "confirm_password", "label" => __(GetAppText("confirm_password")), "type" => "password", "mandatory" => true]) @endcomponent
@component("components.buttons.button", [ "id" => "btn_change_password", "title" => __("universal.button.save"), "style" => "min-width: 8em;" ]) @endcomponent
@component("components.modals.modal", ["id" => "modal_info_complexity_requirements", "modalTitle" => __(GetAppText("info.complexity_requirements_password.title"))]) @slot("modalBody") {!! __(GetAppText("info.complexity_requirements_password.text")) !!} @endSlot @endcomponent @endsection