@extends('layouts.app') @section('title') {{ __('Change Password') }} {{ __('Users') }} @endsection @section('breadcrumbs') {{ __('Users') }} {{ __('Change Password') }} @endsection @section('content')
{{ __('Users') }} {{ __('Change Password') }}
@lang('Name'): {{ $user->name }}
@lang('Email'): {{ $user->email }}
{{ html()->form('PATCH', route('users.changePasswordUpdate', $user->id))->class('form-horizontal')->open() }}
{{ html()->label(__('labels.users.fields.password'))->class('col-md-2 form-label')->for('password') }}
{{ html()->password('password')->class('form-control')->placeholder(__('labels.users.fields.password'))->required() }}
{{ html()->label(__('labels.users.fields.password_confirmation'))->class('col-md-2 form-label')->for('password_confirmation') }}
{{ html()->password('password_confirmation')->class('form-control')->placeholder(__('labels.users.fields.password_confirmation'))->required() }}
{{ html()->button($text = " " . __('Save'), $type = 'submit')->class('btn btn-success') }}
{{ html()->closeModelForm() }}
@endsection