PHPackages                             laravins/remote-auth - 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. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. laravins/remote-auth

ActiveProject[Authentication &amp; Authorization](/categories/authentication)

laravins/remote-auth
====================

Remote auth manager

010JavaScript

Since Jan 29Pushed 3y ago1 watchersCompare

[ Source](https://github.com/Vincentdm31/laravel-remote-auth-dashboard)[ Packagist](https://packagist.org/packages/laravins/remote-auth)[ RSS](/packages/laravins-remote-auth/feed)WikiDiscussions main Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

Laravel Remote Auth Manager
===========================

[](#laravel-remote-auth-manager)

**Introduction**

This package allows you to update user password and delete user remotely.

Working with LaravinsRemoteAuthClient package.

**Installation**

```
composer require laravins/remote-auth

```

This will install the package inside your project.

- `Config file` located at `config/remote-auth/remote-auth-manager.php`
- `Dashboard` located at `resources/views/remote-auth/dashboard.blade.php`
- `Controller` located at `Http/Controllers/RemoteAuth/RemoteAuthController.php`
- `JS files` located at `resources/js/remote-auth/`

Publish files

```
php artisan vendor:publish --tag=remote-auth --ansi --force

```

Add this line to your webpack.mix.js at root of your project

```
mix.js('resources/js/remote-auth/index.js', 'public/js/remote-auth.js')
```

```
npm i
npm run dev

```

---

**Config file**

This config file will allow you to remotely manage your users off `https://my-website.com/` endpoint.

```
