@extends('backend.layouts.app') @section('title') {{ __($module_action) }} {{ __($module_title) }} @endsection @section('breadcrumbs') {{ __($module_title) }} {{ __($module_action) }} @endsection @section('content')
{{ __($module_title) }} {{ __($module_action) }} @lang(":module_name Management Dashboard", ['module_name'=>Str::title($module_name)])
@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