@extends('backend.layouts.app') @section('title') {{ __($module_action) }} {{ $module_title }} @endsection @section('breadcrumbs') {{ $module_title }} {{ __($module_action) }} @endsection @section('content')
@include("backend.includes.flash")

@lang('User') @lang('Change Password')

{{ __('labels.backend.users.edit.sub-title') }}

@lang('Name'): {{ $$module_name_singular->name }}
@lang('Email'): {{ $$module_name_singular->email }}
{{ html()->form('PATCH', route('backend.users.changePasswordUpdate', $$module_name_singular->id))->class('form-horizontal')->open() }}
{{ html()->label(__('labels.backend.users.fields.password'))->class('col-md-2 form-control-label')->for('password') }}
{{ html()->password('password') ->class('form-control') ->placeholder(__('labels.backend.users.fields.password')) ->required() }}
{{ html()->label(__('labels.backend.users.fields.password_confirmation'))->class('col-md-2 form-control-label')->for('password_confirmation') }}
{{ html()->password('password_confirmation') ->class('form-control') ->placeholder(__('labels.backend.users.fields.password_confirmation')) ->required() }}
{{ html()->button($text = " Save", $type = 'submit')->class('btn btn-success') }}
{{ html()->closeModelForm() }}
@endsection