PHPackages                             winnie/laravelchangepassword - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. winnie/laravelchangepassword

ActiveLibrary

winnie/laravelchangepassword
============================

:Laravel framework change password functionality.

v1.3(5y ago)115MITPHP

Since Apr 8Pushed 5y ago1 watchersCompare

[ Source](https://github.com/winex01/laravelchangepassword)[ Packagist](https://packagist.org/packages/winnie/laravelchangepassword)[ Docs](https://github.com/winex01/laravelchangepassword)[ RSS](/packages/winnie-laravelchangepassword/feed)WikiDiscussions master Synced today

READMEChangelog (9)Dependencies (6)Versions (11)Used By (0)

LaravelChangePassword
=====================

[](#laravelchangepassword)

[![Latest Version on Packagist](https://camo.githubusercontent.com/7dee3b08d7b6861b662e3ed08868f723d810c10dea9c815ffc600a4b317395f4/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f77696e6e69652f6c61726176656c6368616e676570617373776f72642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/winnie/laravelchangepassword)[![Total Downloads](https://camo.githubusercontent.com/51af455f140985d315a66bc7456e1f9d48942bbefa98d25a687ae4246a6a420d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f77696e6e69652f6c61726176656c6368616e676570617373776f72642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/winnie/laravelchangepassword)[![Build Status](https://camo.githubusercontent.com/479dca7d977deb212652be27abb83d2bd5ce4538646719cc3532189d41335115/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f77696e6e69652f6c61726176656c6368616e676570617373776f72642f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/winnie/laravelchangepassword)[![StyleCI](https://camo.githubusercontent.com/cb13a877afd1dbe223c631789c3f922d3ace958fdb334a9cce9b26afefbc2ebd/68747470733a2f2f7374796c6563692e696f2f7265706f732f31323334353637382f736869656c64)](https://styleci.io/repos/12345678)

Laravel framework change password functionality. I assume you use built-in laravel authentication / laravel ui.

[![laravelchangepassword](https://user-images.githubusercontent.com/23657442/79085433-255c4c80-7d6b-11ea-9465-fec9667a9ed3.png)](https://user-images.githubusercontent.com/23657442/79085433-255c4c80-7d6b-11ea-9465-fec9667a9ed3.png)

Installation
------------

[](#installation)

1. Require the Package via Composer

```
$ composer require winnie/laravelchangepassword
```

2. Then add the service provider to `config/app.php`. In Laravel versions 5.5 and beyond, this step can be skipped if package auto-discovery is enabled.

```
'providers' => [
    ...
    Winnie\LaravelChangePassword\LaravelChangePasswordServiceProvider::class
    ...
];
```

3. Publish the configuration file:

```
$ php artisan vendor:publish --provider="Winnie\LaravelChangePassword\LaravelChangePasswordServiceProvider"
```

Usage
-----

[](#usage)

Add this to your `routes/web.php`

```
LaravelChangePassword::routes();
```

You can visit this route for change password `your-website/password/change`

You can also use this route name

```
{{ route('password.change') }}
```

Example:

```

    {{ __('Change Password') }}

```

You can edit the config file to change settings at `config/laravelchangepassword.php`.

```
