{{ __('auth.reset_password') }}

{{ html()->form('POST', route('password.update'))->attribute('data-toggle','validator')->open() }}
{{ html()->label(__('message.email') . ' *', 'email')->class('form-control-label') }} {{ html()->email('email', old('email') ?? $request->email)->class('form-control')->placeholder(__('message.email'))->required() }}
{{ html()->label(__('message.password') . ' *', 'password')->class('form-control-label') }} {{ html()->password('password',old('password'))->class('form-control')->id('password')->placeholder(__('message.password'))->required() }}
{{ html()->label(__('auth.password_confirmation') . ' *', 'password_confirmation')->class('form-control-label') }} {{ html()->password('password_confirmation',old('password_confirmation'))->class('form-control')->placeholder(__('auth.password_confirmation'))->required() }}
{{ html()->form()->close() }}