PHPackages                             olakunlevpn/laravel-installer-account - 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. [Admin Panels](/categories/admin)
4. /
5. olakunlevpn/laravel-installer-account

ActiveLibrary[Admin Panels](/categories/admin)

olakunlevpn/laravel-installer-account
=====================================

Account setup and admin creation plugin for Laravel Installer

v4.0.0(2mo ago)01MITPHPPHP ^8.2

Since Dec 13Pushed 2mo agoCompare

[ Source](https://github.com/olakunlevpn/laravel-installer-account)[ Packagist](https://packagist.org/packages/olakunlevpn/laravel-installer-account)[ RSS](/packages/olakunlevpn-laravel-installer-account/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (1)Versions (3)Used By (0)

Laravel Installer - Account Setup
=================================

[](#laravel-installer---account-setup)

[![Latest Version](https://camo.githubusercontent.com/a3d55d4bb3acc7fdf77d9585218d2c0b51b4d29ab6d97a51676ee7f2799c6232/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f6f6c616b756e6c6576706e2f6c61726176656c2d696e7374616c6c65722e7376673f7374796c653d666c61742d737175617265)](https://github.com/olakunlevpn/laravel-installer/releases)[![Total Downloads](https://camo.githubusercontent.com/e32c22299786302b7e66905faf5bde00a85391669de368711c2688ce435f509c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6f6c616b756e6c6576706e2f6c61726176656c2d696e7374616c6c65722d6163636f756e742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/olakunlevpn/laravel-installer-account)

This package adds admin account creation to Laravel Installer. It creates the first administrator user during the installation process.

To learn all about it, head over to [the extensive documentation](https://maylancer.org/docs/laravel-installer/packages/account-setup).

Here's what you can do:

```
// Configure default admin role
ACCOUNT_DEFAULT_ROLE=admin
ACCOUNT_STEP_POSITION=5
```

The package creates admin users:

```
// User fills in:
// - Name
// - Email
// - Password
// - Password confirmation

// Package stores in session until database ready
// After migrations, saves to users table
```

Works with your users table:

```
Schema::create('users', function (Blueprint $table) {
    $table->id();
    $table->string('name');
    $table->string('email')->unique();
    $table->string('password');
    $table->string('role')->default('user'); // Optional
    $table->timestamps();
});
```

Integrates with license verification:

```
// If license package installed
// Email auto-fills from license step
// Saves time for users
```

The account data is stored securely with bcrypt-hashed passwords.

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

[](#installation)

You can install the package via composer:

```
composer require olakunlevpn/laravel-installer-account
```

Ensure your users migration has the required columns:

```
// Laravel's default migration already includes:
// - name, email, password

// Add role column if needed:
$table->string('role')->default('user');
```

Configure the default admin role:

```
ACCOUNT_DEFAULT_ROLE=admin
ACCOUNT_STEP_POSITION=5
```

That's it! The account setup step will appear in your installer.

You can find the full installation instructions in [our documentation](https://maylancer.org/docs/laravel-installer/packages/account-setup).

Usage
-----

[](#usage)

The package handles everything automatically:

1. Displays account creation form
2. Validates user input
3. Stores data in session
4. After migrations complete, saves to `users` table
5. Hashes password with bcrypt
6. Assigns configured role

Role Configuration
------------------

[](#role-configuration)

**String role:**

```
'default_role' => 'admin',
'role_column' => 'role',
```

**Integer role\_id:**

```
'default_role' => 1,
'role_column' => 'role_id',
```

**No role:**

```
'default_role' => null,
```

Customization
-------------

[](#customization)

Publish the configuration file:

```
php artisan vendor:publish --tag=laravel-installer-account-config
```

Publish views to customize the UI:

```
php artisan vendor:publish --tag=laravel-installer-account-views
```

Publish translations:

```
php artisan vendor:publish --tag=laravel-installer-account-translations
```

Learn more about customization in [the documentation](https://maylancer.org/docs/laravel-installer/packages/account-setup).

Changelog
---------

[](#changelog)

Please see the main [CHANGELOG](../../CHANGELOG.md) for more information on what has changed recently.

License
-------

[](#license)

The MIT License (MIT). Please see [License File](../../LICENSE.md) for more information.

###  Health Score

37

—

LowBetter than 83% of packages

Maintenance84

Actively maintained with recent releases

Popularity1

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~68 days

Total

2

Last Release

81d ago

Major Versions

v1.0.0 → v4.0.02026-02-20

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/20794807?v=4)[Olakunlevpn](/maintainers/olakunlevpn)[@olakunlevpn](https://github.com/olakunlevpn)

---

Top Contributors

[![olakunlevpn](https://avatars.githubusercontent.com/u/20794807?v=4)](https://github.com/olakunlevpn "olakunlevpn (2 commits)")

---

Tags

pluginlaravelinstalleradminaccount

### Embed Badge

![Health badge](/badges/olakunlevpn-laravel-installer-account/health.svg)

```
[![Health](https://phpackages.com/badges/olakunlevpn-laravel-installer-account/health.svg)](https://phpackages.com/packages/olakunlevpn-laravel-installer-account)
```

###  Alternatives

[slowlyo/owl-admin

基于 laravel、amis 开发的后台框架~

61214.2k26](/packages/slowlyo-owl-admin)[printnow/laravel-admin

Dcat admin 永久分叉版 / 支持 Laravel 12, PHP 版本限制 &gt;= 8.1（支持 PHP 8.4）

432.0k](/packages/printnow-laravel-admin)[larasnap/laravel-admin

Laravel Admin Panel

221.4k](/packages/larasnap-laravel-admin)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
