dejwcake/admin-auth

Authentication interface for brackets/admin-ui
1,137
Install
composer require dejwcake/admin-auth
Latest Version:2.0.3
PHP:^8.5
License:MIT
Last Updated:Aug 6, 2026
Links: GitHub  ·  Packagist
Maintainer: dejwCake

Admin Auth

Admin Auth is a Laravel package that handles authentication for the Craftable admin interface in your application. It supports:

  • Authenticating admin users (login and logout)
  • Handling admin password resets
  • Activating new admin accounts

Provided functionality is ready to use – package exposes a set of routes, it has controllers and views (based on dejwCake/admin-ui admin template).

Admin login form

This package is part of Craftable (dejwCake/craftable), an administration starter kit for Laravel 13. Forked from Craftable (brackets/craftable).

You can find full documentation at https://docs.getcraftable.com/#/admin-auth

Issues

Where do I report issues? If something is not working as expected, please open an issue in the main repository https://github.com/dejwCake/craftable.

How to develop this project

Composer

Update dependencies:

docker compose run -it --rm test composer update

Composer normalization:

docker compose run -it --rm php-qa composer normalize

Run code analysis tools (php-qa)

PHP compatibility:

docker compose run -it --rm php-qa phpcs --standard=.phpcs.compatibility.xml --cache=.phpcs.cache

Code style:

docker compose run -it --rm php-qa phpcs -s --colors --extensions=php

Fix style issues:

docker compose run -it --rm php-qa phpcbf -s --colors --extensions=php

Static analysis (phpstan):

docker compose run -it --rm php-qa phpstan analyse --configuration=phpstan.neon

Mess detector (phpmd):

docker compose run -it --rm php-qa phpmd ./config,./database,./lang,./resources,./routes,./src,./tests ansi phpmd.xml --suffixes php --baseline-file phpmd.baseline.xml

Run tests

Run tests against mariadb:

docker compose run -it --rm -e DB_CONNECTION=mysql test ./vendor/bin/phpunit

Run tests against postgresql:

docker compose run -it --rm -e DB_CONNECTION=pgsql test ./vendor/bin/phpunit

Run tests with coverage:

docker compose run -it --rm test ./vendor/bin/phpunit --coverage-text

Run the whole PHP suite

Run every PHP check and the test suite against both databases in sequence (stops at the first failure):

docker compose run -it --rm test composer update \
  && docker compose run -it --rm php-qa composer normalize \
  && docker compose run -it --rm php-qa phpcs --standard=.phpcs.compatibility.xml --cache=.phpcs.cache \
  && docker compose run -it --rm php-qa phpcs -s --colors --extensions=php \
  && docker compose run -it --rm php-qa phpstan analyse --configuration=phpstan.neon \
  && docker compose run -it --rm php-qa phpmd ./config,./database,./lang,./resources,./routes,./src,./tests ansi phpmd.xml --suffixes php --baseline-file phpmd.baseline.xml \
  && docker compose run -it --rm -e DB_CONNECTION=mysql test ./vendor/bin/phpunit \
  && docker compose run -it --rm -e DB_CONNECTION=pgsql test ./vendor/bin/phpunit

Related Packages

brackets/admin-auth

Authentication interface for brackets/admin-ui

262,650 7
sarav/laravel-multiauth

A Simple Laravel Package for handling multiple authentication

31,217 50
auth0/login

Auth0 Laravel SDK. Straight-forward and tested methods for implementing authenti...

5,615,815 274
themonkeys/laravel-google-auth

Laravel Authentication Driver for Google OAuth authentication

1,863 43
abidra/laravel-google-auth

Laravel Authentication Driver for Google OAuth authentication

15 0