Laravel Auth is a Complete Build of Laravel 12 with Email Registration Verification, Social Authentication, User Roles and Permissions, User Profiles, and Admin restricted user management system. Built on Bootstrap 4.
This project costs me $22/month to be hosted on Vultr.
Please consider supporting my work if you use & find it useful. β€οΈ
If you like this, you will love Laravel Auth Spa with configurable providers from an admin panel.
- About
- Features
- Installation Instructions
- Seeds
- Routes
- Socialite
- Other API keys
- Environment File
- Updates
- Screenshots
- File Tree
- Opening an Issue
- Laravel Auth License
- Contributors
Laravel 12 with user authentication, registration with email confirmation, social media authentication, password recovery, and captcha protection. Uses official Bootstrap 4. This also makes full use of Controllers for the routes, templates for the views, and makes use of middleware for routing. Project can be stood up in minutes.
| Laravel Auth Features |
|---|
| Built on Laravel 12 |
| Built on Bootstrap 4 |
| Uses MySQL Database (can be changed) |
| Uses Artisan to manage database migration, schema creations, and create/publish page controller templates |
| Dependencies are managed with COMPOSER |
| Laravel Scaffolding User and Administrator Authentication. |
| User Socialite Logins ready to go - See API list used below |
| Google Maps API v3 for User Location lookup and Geocoding |
| CRUD (Create, Read, Update, Delete) Themes Management |
| CRUD (Create, Read, Update, Delete) User Management |
| Robust Laravel Logging with admin UI using MonoLog |
| Google reCaptcha Protection with Google API |
| User Registration with email verification |
| Makes use of Laravel Mix to compile assets |
| Makes use of Language Localization Files |
| Active Nav states using Laravel Requests |
| Restrict User Email Activation Attempts |
| Capture IP to users table upon signup |
| Uses Laravel Debugger for development |
| Makes use of Password Strength Meter |
| Makes use of hideShowPassword |
| User Avatar Image AJAX Upload with Dropzone.js |
| User Gravatar using Gravatar API |
| User Password Reset via Email Token |
| User Login with remember password |
| User Roles/ACL Implementation |
| Roles and Permissions GUI |
| Makes use of Laravel's Soft Delete Structure |
| Soft Deleted Users Management System |
| Permanently Delete Soft Deleted Users |
| User Delete Account with Goodbye email |
| User Restore Deleted Account Token |
| Restore Soft Deleted Users |
| View Soft Deleted Users |
| Captures Soft Delete Date |
| Captures Soft Delete IP |
| Admin Routing Details UI |
| Admin PHP Information UI |
| Eloquent user profiles |
| User Themes |
| 404 Page |
| 403 Page |
| Configurable Email Notification via Laravel-Exception-Notifier |
| Activity Logging using Laravel-logger |
| Optional 2-step account login verfication with Laravel 2-Step Verification |
| Uses Laravel PHP Info package |
| Uses Laravel Blocker package |
- Run
git clone https://github.com/jeremykenedy/laravel-auth.git laravel-auth - Create a MySQL database for the project
mysql -u root -p, if using Vagrant:mysql -u homestead -psecretcreate database laravelAuth;\q
- From the projects root run
cp .env.example .env - Configure your
.envfile - Install composer, php-mysql, php-ext and php-dom (dependent on your distrubtion, For Debian run
apt install composer php-mysql php-ext php-dom) - Run
composer updatefrom the projects root folder - From the projects root folder run:
php artisan vendor:publish --tag=laravelroles && php artisan vendor:publish --tag=laravel2step && php artisan vendor:publish --tag=laravel-email-database-log-migration - From the projects root folder run
sudo chmod -R 755 ../laravel-auth - From the projects root folder run
php artisan key:generate - From the projects root folder run
php artisan migrate - From the projects root folder run
composer dump-autoload - From the projects root folder run
php artisan db:seed - Compile the front end assets with npm steps or yarn steps.
- Install yarn (dependent on your distribution)
- From the projects root folder run
yarn install - From the projects root folder run
yarn run devoryarn run build
- From the projects root folder run
npm install - From the projects root folder run
npm run devornpm run build
- From the projects root folder run
php artisan config:cache
And thats it with the caveat of setting up and configuring your development environment. I recommend Laravel Homestead
- Unverified - Level 0
- User - Level 1
- Administrator - Level 5
- view.users
- create.users
- edit.users
- delete.users
| Password | Access | |
|---|---|---|
| user@user.com | password | User Access |
| admin@user.com | password | Admin Access |
- ThemesTableSeeder
- NOTE: A lot of themes render incorrectly on Bootstrap 4 since their core was built to override Bootstrap 4. These will be updated soon and ones that do not render correctly will be removed from the seed. In the mean time you can remove them from the seed or manaully from the UI or database.
| Slug | Name |
|---|---|
| ipAddress | IP Address |
| domain | Domain Name |
| user | User |
| city | City |
| state | State |
| country | Country |
| countryCode | Country Code |
| continent | Continent |
| region | Region |
| Type | Value | Note |
|---|---|---|
| domain | test.com | Block all domains/emails @test.com |
| domain | test.ca | Block all domains/emails @test.ca |
| domain | fake.com | Block all domains/emails @fake.com |
| domain | example.com | Block all domains/emails @example.com |
| domain | mailinator.com | Block all domains/emails @mailinator.com |
GET|HEAD / ..................................................................................................................... welcome ⺠WelcomeController@welcome POST _ignition/execute-solution .................................................. ignition.executeSolution ⺠Spatie\LaravelIgnition ⺠ExecuteSolutionController GET|HEAD _ignition/health-check .............................................................. ignition.healthCheck ⺠Spatie\LaravelIgnition ⺠HealthCheckController POST _ignition/update-config ........................................................... ignition.updateConfig ⺠Spatie\LaravelIgnition ⺠UpdateConfigController GET|HEAD activate ....................................................................................................... activate ⺠Auth\ActivateController@initial GET|HEAD activate/{token} ................................................................................ authenticated.activate ⺠Auth\ActivateController@activate GET|HEAD activation ............................................................................... authenticated.activation-resend ⺠Auth\ActivateController@resend GET|HEAD activation-required ...................................................................... activation-required ⺠Auth\ActivateController@activationRequired GET|HEAD activity .................................................................... activity ⺠jeremykenedy\LaravelLogger ⺠LaravelLoggerController@showAccessLog DELETE activity/clear-activity ............................................ clear-activity ⺠jeremykenedy\LaravelLogger ⺠LaravelLoggerController@clearActivityLog GET|HEAD activity/cleared .................................................... cleared ⺠jeremykenedy\LaravelLogger ⺠LaravelLoggerController@showClearedActivityLog GET|HEAD activity/cleared/log/{id} .................................................. jeremykenedy\LaravelLogger ⺠LaravelLoggerController@showClearedAccessLogEntry DELETE activity/destroy-activity ...................................... destroy-activity ⺠jeremykenedy\LaravelLogger ⺠LaravelLoggerController@destroyActivityLog POST activity/live-search ......................................................... liveSearch ⺠jeremykenedy\LaravelLogger ⺠LaravelLoggerController@liveSearch GET|HEAD activity/log/{id} ................................................................. jeremykenedy\LaravelLogger ⺠LaravelLoggerController@showAccessLogEntry POST activity/restore-log .................................... restore-activity ⺠jeremykenedy\LaravelLogger ⺠LaravelLoggerController@restoreClearedActivityLog POST avatar/upload ................................................................................................... avatar.upload ⺠ProfilesController@upload GET|HEAD blocker ................................... laravelblocker::blocker.index ⺠jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerController@index POST blocker ................................... laravelblocker::blocker.store ⺠jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerController@store GET|HEAD blocker-deleted .................. laravelblocker::blocker-deleted ⺠jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerDeletedController@index DELETE blocker-deleted-destroy-all laravelblocker::destroy-all-blocked ⺠jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerDeletedController@destroy⦠POST blocker-deleted-restore-all laravelblocker::blocker-deleted-restore-all ⺠jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerDeletedController⦠GET|HEAD blocker-deleted/{id} .... laravelblocker::blocker-item-show-deleted ⺠jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerDeletedController@show PUT blocker-deleted/{id} laravelblocker::blocker-item-restore ⺠jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerDeletedController@restoreBlocke⦠DELETE blocker-deleted/{id} ...... laravelblocker::blocker-item-destroy ⺠jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerDeletedController@destroy GET|HEAD blocker/create .......................... laravelblocker::blocker.create ⺠jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerController@create GET|HEAD blocker/{blocker} ........................... laravelblocker::blocker.show ⺠jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerController@show PUT|PATCH blocker/{blocker} ....................... laravelblocker::blocker.update ⺠jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerController@update DELETE blocker/{blocker} ..................... laravelblocker::blocker.destroy ⺠jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerController@destroy GET|HEAD blocker/{blocker}/edit ...................... laravelblocker::blocker.edit ⺠jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerController@edit GET|POST|HEAD broadcasting/auth .............................................................................. Illuminate\Broadcasting ⺠BroadcastController@authenticate GET|HEAD exceeded ...................................................................................................... exceeded ⺠Auth\ActivateController@exceeded GET|HEAD home ................................................................................................................... public.home ⺠UserController@index GET|HEAD images/profile/{id}/avatar/{image} ................................................................................... ProfilesController@userProfileAvatar GET|HEAD login .......................................................................................................... login ⺠Auth\LoginController@showLoginForm POST login .......................................................................................................................... Auth\LoginController@login POST logout ............................................................................................................... logout ⺠Auth\LoginController@logout GET|HEAD logs ............................................................................................. Rap2hpoutre\LaravelLogViewer ⺠LogViewerController@index POST password/email .......................................................................... password.email ⺠Auth\ForgotPasswordController@sendResetLinkEmail GET|HEAD password/reset ....................................................................... password.request ⺠Auth\ForgotPasswordController@showLinkRequestForm POST password/reset ....................................................................................... password.update ⺠Auth\ResetPasswordController@reset GET|HEAD password/reset/{token} ........................................................................ password.reset ⺠Auth\ResetPasswordController@showResetForm GET|HEAD permission-deleted/{id} ...................... laravelroles::permission-show-deleted ⺠jeremykenedy\LaravelRoles ⺠LaravelpermissionsDeletedController@show DELETE permission-destroy/{id} ................... laravelroles::permission-item-destroy ⺠jeremykenedy\LaravelRoles ⺠LaravelpermissionsDeletedController@destroy PUT permission-restore/{id} .............. laravelroles::permission-restore ⺠jeremykenedy\LaravelRoles ⺠LaravelpermissionsDeletedController@restorePermission GET|HEAD permissions .............................................. laravelroles::permissions.index ⺠jeremykenedy\LaravelRoles ⺠LaravelPermissionsController@index POST permissions .............................................. laravelroles::permissions.store ⺠jeremykenedy\LaravelRoles ⺠LaravelPermissionsController@store GET|HEAD permissions-deleted ............................. laravelroles::permissions-deleted ⺠jeremykenedy\LaravelRoles ⺠LaravelpermissionsDeletedController@index DELETE permissions-deleted-destroy-all laravelroles::destroy-all-deleted-permissions ⺠jeremykenedy\LaravelRoles ⺠LaravelpermissionsDeletedController@destroyAll⦠POST permissions-deleted-restore-all laravelroles::permissions-deleted-restore-all ⺠jeremykenedy\LaravelRoles ⺠LaravelpermissionsDeletedController@restoreAll⦠GET|HEAD permissions/create ..................................... laravelroles::permissions.create ⺠jeremykenedy\LaravelRoles ⺠LaravelPermissionsController@create GET|HEAD permissions/{permission} ................................... laravelroles::permissions.show ⺠jeremykenedy\LaravelRoles ⺠LaravelPermissionsController@show PUT|PATCH permissions/{permission} ............................... laravelroles::permissions.update ⺠jeremykenedy\LaravelRoles ⺠LaravelPermissionsController@update DELETE permissions/{permission} ............................. laravelroles::permissions.destroy ⺠jeremykenedy\LaravelRoles ⺠LaravelPermissionsController@destroy GET|HEAD permissions/{permission}/edit .............................. laravelroles::permissions.edit ⺠jeremykenedy\LaravelRoles ⺠LaravelPermissionsController@edit ANY php ............................................................................................................... Illuminate\Routing ⺠RedirectController GET|HEAD phpinfo .......................................................... laravelPhpInfo::phpinfo ⺠jeremykenedy\LaravelPhpInfo ⺠LaravelPhpInfoController@phpinfo GET|HEAD profile/create ................................................................................................. profile.create ⺠ProfilesController@create GET|HEAD profile/{profile} .................................................................................................. profile.show ⺠ProfilesController@show PUT|PATCH profile/{profile} .............................................................................................. profile.update ⺠ProfilesController@update GET|HEAD profile/{profile}/edit ............................................................................................. profile.edit ⺠ProfilesController@edit GET|HEAD profile/{username} ................................................................................................... {username} ⺠ProfilesController@show DELETE profile/{username}/deleteUserAccount ..................................................... profile.deleteUserAccount ⺠ProfilesController@deleteUserAccount PUT profile/{username}/updateUserAccount ..................................................... profile.updateUserAccount ⺠ProfilesController@updateUserAccount PUT profile/{username}/updateUserPassword .................................................. profile.updateUserPassword ⺠ProfilesController@updateUserPassword GET|HEAD re-activate/{token} ................................................................................ user.reactivate ⺠RestoreUserController@userReActivate GET|HEAD register .......................................................................................... register ⺠Auth\RegisterController@showRegistrationForm POST register ................................................................................................................. Auth\RegisterController@register GET|HEAD role-deleted/{id} ........................................ laravelroles::role-show-deleted ⺠jeremykenedy\LaravelRoles ⺠LaravelRolesDeletedController@show DELETE role-destroy/{id} ..................................... laravelroles::role-item-destroy ⺠jeremykenedy\LaravelRoles ⺠LaravelRolesDeletedController@destroy PUT role-restore/{id} ...................................... laravelroles::role-restore ⺠jeremykenedy\LaravelRoles ⺠LaravelRolesDeletedController@restoreRole GET|HEAD roles ................................................................ laravelroles::roles.index ⺠jeremykenedy\LaravelRoles ⺠LaravelRolesController@index POST roles ................................................................ laravelroles::roles.store ⺠jeremykenedy\LaravelRoles ⺠LaravelRolesController@store GET|HEAD roles-deleted ............................................... laravelroles::roles-deleted ⺠jeremykenedy\LaravelRoles ⺠LaravelRolesDeletedController@index DELETE roles-deleted-destroy-all ...... laravelroles::destroy-all-deleted-roles ⺠jeremykenedy\LaravelRoles ⺠LaravelRolesDeletedController@destroyAllDeletedRoles POST roles-deleted-restore-all ...... laravelroles::roles-deleted-restore-all ⺠jeremykenedy\LaravelRoles ⺠LaravelRolesDeletedController@restoreAllDeletedRoles GET|HEAD roles/create ....................................................... laravelroles::roles.create ⺠jeremykenedy\LaravelRoles ⺠LaravelRolesController@create GET|HEAD roles/{role} ........................................................... laravelroles::roles.show ⺠jeremykenedy\LaravelRoles ⺠LaravelRolesController@show PUT|PATCH roles/{role} ....................................................... laravelroles::roles.update ⺠jeremykenedy\LaravelRoles ⺠LaravelRolesController@update DELETE roles/{role} ..................................................... laravelroles::roles.destroy ⺠jeremykenedy\LaravelRoles ⺠LaravelRolesController@destroy GET|HEAD roles/{role}/edit ...................................................... laravelroles::roles.edit ⺠jeremykenedy\LaravelRoles ⺠LaravelRolesController@edit GET|HEAD routes .................................................................................................................. AdminDetailsController@listRoutes GET|HEAD sanctum/csrf-cookie ..................................................................... sanctum.csrf-cookie ⺠Laravel\Sanctum ⺠CsrfCookieController@show POST search-blocked .......................... laravelblocker::search-blocked ⺠jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerController@search POST search-blocked-deleted ... laravelblocker::search-blocked-deleted ⺠jeremykenedy\LaravelBlocker\App\Http\Controllers\LaravelBlockerDeletedController@search POST search-users .............................................................................................. search-users ⺠UsersManagementController@search GET|HEAD social/handle/{provider} ............................................................................ social.handle ⺠Auth\SocialController@getSocialHandle GET|HEAD social/redirect/{provider} ...................................................................... social.redirect ⺠Auth\SocialController@getSocialRedirect GET|HEAD terms ....................................................................................................................... terms ⺠TermsController@terms GET|HEAD themes .......................................................................................................... themes ⺠ThemesManagementController@index POST themes .................................................................................................... themes.store ⺠ThemesManagementController@store GET|HEAD themes/create ........................................................................................... themes.create ⺠ThemesManagementController@create GET|HEAD themes/{theme} .............................................................................................. themes.show ⺠ThemesManagementController@show PUT|PATCH themes/{theme} .......................................................................................... themes.update ⺠ThemesManagementController@update DELETE themes/{theme} ........................................................................................ themes.destroy ⺠ThemesManagementController@destroy GET|HEAD themes/{theme}/edit ......................................................................................... themes.edit ⺠ThemesManagementController@edit GET|HEAD users ............................................................................................................. users ⺠UsersManagementController@index POST users ....................................................................................................... users.store ⺠UsersManagementController@store GET|HEAD users/create .............................................................................................. users.create ⺠UsersManagementController@create GET|HEAD users/deleted ................................................................................................. deleted.index ⺠SoftDeletesController@index GET|HEAD users/deleted/{deleted} ......................................................................................... deleted.show ⺠SoftDeletesController@show PUT|PATCH users/deleted/{deleted} ..................................................................................... deleted.update ⺠SoftDeletesController@update DELETE users/deleted/{deleted} ................................................................................... deleted.destroy ⺠SoftDeletesController@destroy GET|HEAD users/{user} .................................................................................................. users.show ⺠UsersManagementController@show PUT|PATCH users/{user} .............................................................................................. users.update ⺠UsersManagementController@update DELETE users/{user} ............................................................................................. user.destroy ⺠UsersManagementController@destroy GET|HEAD users/{user}/edit ............................................................................................. users.edit ⺠UsersManagementController@edit GET|HEAD verification/needed .................. laravel2step::verificationNeeded ⺠jeremykenedy\laravel2step\App\Http\Controllers\TwoStepController@showVerification POST verification/resend ........................................ laravel2step::resend ⺠jeremykenedy\laravel2step\App\Http\Controllers\TwoStepController@resend POST verification/verify ........................................ laravel2step::verify ⺠jeremykenedy\laravel2step\App\Http\Controllers\TwoStepController@verify- Google Captcha API
- Facebook API
- Twitter API
- Google + API
- GitHub API
- YouTube API
- Twitch TV API
- Instagram API
- 37 Signals API
- See full list of providers: https://socialiteproviders.github.io
-
Go to https://socialiteproviders.github.io and select the provider to be added.
-
From the projects root folder, in the terminal, run composer to get the needed package.
- Example:
composer require socialiteproviders/twitch -
From the projects root folder run
composer update -
Add the service provider to
/config/services.php- Example:
'twitch' => [ 'client_id' => env('TWITCH_KEY'), 'client_secret' => env('TWITCH_SECRET'), 'redirect' => env('TWITCH_REDIRECT_URI'), ], -
Add the API credentials to
/.env- Example:
TWITCH_KEY=YOURKEYHERE TWITCH_SECRET=YOURSECRETHERE TWITCH_REDIRECT_URI=http://YOURWEBSITEURL.COM/social/handle/twitch -
Add the social media login link:
-
Example: In file
/resources/views/auth/login.blade.phpadd ONE of the following:- Conventional HTML:
<a href="{{ route('social.redirect', ['provider' => 'twitch']) }}" class="btn btn-lg btn-primary btn-block twitch">Twitch</a>- Use Laravel HTML Facade with Laravel Collective:
{!! html()->a(route('social.redirect', ['provider' => 'twitch']), 'Twitch', array('class' => 'btn btn-lg btn-primary btn-block twitch')) !!}
-
Example .env file:
APP_NAME=Laravel APP_ENV=local APP_KEY= APP_DEBUG=true APP_URL=http://localhost:8000 APP_PROJECT_VERSION=12 LOG_CHANNEL=stack DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=laravel DB_USERNAME=root DB_PASSWORD= BROADCAST_DRIVER=pusher CACHE_DRIVER=file SESSION_DRIVER=file SESSION_LIFETIME=120 QUEUE_DRIVER=sync REDIS_HOST=127.0.0.1 REDIS_PASSWORD=null REDIS_PORT=6379 MAIL_MAILER=smtp MAIL_HOST=smtp.mailtrap.io MAIL_PORT=2525 MAIL_USERNAME=null MAIL_PASSWORD=null MAIL_ENCRYPTION=null MAIL_FROM_ADDRESS=null MAIL_FROM_NAME="${APP_NAME}" EMAIL_EXCEPTION_ENABLED=false EMAIL_EXCEPTION_FROM="${MAIL_FROM_ADDRESS}" EMAIL_EXCEPTION_TO='email1@gmail.com, email2@gmail.com' EMAIL_EXCEPTION_CC='' EMAIL_EXCEPTION_BCC='' EMAIL_EXCEPTION_SUBJECT='' AWS_ACCESS_KEY_ID= AWS_SECRET_ACCESS_KEY= AWS_DEFAULT_REGION=us-east-1 AWS_BUCKET= PUSHER_APP_ID= PUSHER_APP_KEY= PUSHER_APP_SECRET= PUSHER_APP_CLUSTER= MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}" MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" ACTIVATION=true ACTIVATION_LIMIT_TIME_PERIOD=24 ACTIVATION_LIMIT_MAX_ATTEMPTS=3 NULL_IP_ADDRESS=0.0.0.0 DEBUG_BAR_ENVIRONMENT=local USER_RESTORE_CUTOFF_DAYS=31 USER_RESTORE_ENCRYPTION_KEY= USER_LIST_PAGINATION_SIZE=50 LARAVEL_2STEP_ENABLED=false LARAVEL_2STEP_DATABASE_CONNECTION=mysql LARAVEL_2STEP_DATABASE_TABLE=laravel2step LARAVEL_2STEP_USER_MODEL=App\Models\User LARAVEL_2STEP_EMAIL_FROM= LARAVEL_2STEP_EMAIL_FROM_NAME="Laravel 2 Step Verification" LARAVEL_2STEP_EMAIL_SUBJECT='Laravel 2 Step Verification' LARAVEL_2STEP_EXCEEDED_COUNT=3 LARAVEL_2STEP_EXCEEDED_COUNTDOWN_MINUTES=1440 LARAVEL_2STEP_VERIFIED_LIFETIME_MINUTES=360 LARAVEL_2STEP_RESET_BUFFER_IN_SECONDS=300 LARAVEL_2STEP_CSS_FILE="css/laravel2step/app.css" LARAVEL_2STEP_APP_CSS_ENABLED=false LARAVEL_2STEP_APP_CSS="css/app.css" LARAVEL_2STEP_BOOTSTRAP_CSS_CDN_ENABLED=true LARAVEL_2STEP_BOOTSTRAP_CSS_CDN="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" DEFAULT_GRAVATAR_SIZE=80 DEFAULT_GRAVATAR_FALLBACK=http://c1940652.r52.cf0.rackcdn.com/51ce28d0fb4f442061000000/Screen-Shot-2013-06-28-at-5.22.23-PM.png DEFAULT_GRAVATAR_SECURE=false DEFAULT_GRAVATAR_MAX_RATING=g DEFAULT_GRAVATAR_FORCE_DEFAULT=false DEFAULT_GRAVATAR_FORCE_EXTENSION=jpg DROPZONE_JS_CDN=https://cdnjs.cloudflare.com/ajax/libs/dropzone/5.4.0/dropzone.js LARAVEL_LOGGER_DATABASE_CONNECTION=mysql LARAVEL_LOGGER_DATABASE_TABLE=laravel_logger_activity LARAVEL_LOGGER_ROLES_ENABLED=true LARAVEL_LOGGER_ROLES_MIDDLWARE=role:admin LARAVEL_LOGGER_MIDDLEWARE_ENABLED=true LARAVEL_LOGGER_USER_MODEL=App\Models\User LARAVEL_LOGGER_PAGINATION_ENABLED=true LARAVEL_LOGGER_PAGINATION_PER_PAGE=25 LARAVEL_LOGGER_DATATABLES_ENABLED=false LARAVEL_LOGGER_DASHBOARD_MENU_ENABLED=true LARAVEL_LOGGER_DASHBOARD_DRILLABLE=true LARAVEL_LOGGER_LOG_RECORD_FAILURES_TO_FILE=true LARAVEL_LOGGER_FLASH_MESSAGE_BLADE_ENABLED=false LARAVEL_LOGGER_JQUERY_CDN_ENABLED=false LARAVEL_LOGGER_JQUERY_CDN_URL=https://code.jquery.com/jquery-2.2.4.min.js LARAVEL_LOGGER_BLADE_CSS_PLACEMENT_ENABLED=true LARAVEL_LOGGER_BLADE_JS_PLACEMENT_ENABLED=true LARAVEL_LOGGER_BOOTSTRAP_JS_CDN_ENABLED=false LARAVEL_LOGGER_BOOTSTRAP_JS_CDN_URL=https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js LARAVEL_LOGGER_FONT_AWESOME_CDN_ENABLED=false LARAVEL_LOGGER_FONT_AWESOME_CDN_URL=https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css LARAVEL_LOGGER_BOOTSTRAP_CSS_CDN_ENABLED=false LARAVEL_LOGGER_BOOTSTRAP_CSS_CDN_URL=https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css LARAVEL_BLOCKER_USER_MODEL=App\Models\User LARAVEL_BLOCKER_AUTH_ENABLED=true LARAVEL_BLOCKER_ROLES_ENABLED=true LARAVEL_BLOCKER_FLASH_MESSAGES_ENABLED=false LARAVEL_BLOCKER_JQUERY_CDN_ENABLED=false LARAVEL_BLOCKER_BLADE_PLACEMENT_CSS='template_linked_css' LARAVEL_BLOCKER_BLADE_PLACEMENT_JS='footer_scripts' LARAVEL_BLOCKER_USE_TYPES_SEED_PUBLISHED=true LARAVEL_BLOCKER_USE_ITEMS_SEED_PUBLISHED=true # Roles database information ROLES_DATABASE_CONNECTION=null # Roles Misc Settings ROLES_DEFAULT_SEPARATOR='.' # Roles GUI Settings ROLES_GUI_ENABLED=true ROLES_GUI_AUTH_ENABLED=true ROLES_GUI_MIDDLEWARE_ENABLED=true ROLES_GUI_MIDDLEWARE='role:admin' ROLES_GUI_BLADE_EXTENDED='layouts.app' ROLES_GUI_TITLE_EXTENDED='template_title' ROLES_GUI_LARAVEL_ROLES_ENABLED=true ROLES_GUI_DATATABLES_JS_ENABLED=false ROLES_GUI_FLASH_MESSAGES_ENABLED=false ROLES_GUI_BLADE_PLACEMENT_CSS=template_linked_css ROLES_GUI_BLADE_PLACEMENT_JS=footer_scripts # Google Analytics - If blank it will not render, default is false GOOGLE_ANALYTICS_ID= #GOOGLE_ANALYTICS_ID='UA-XXXXXXXX-X' # NOTE: YOU CAN REMOVE THE KEY CALL IN app.blade.php IF YOU GET A POP UP AND DO NOT WANT TO SETUP A KEY FOR DEV # Google Maps API v3 Key - https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key GOOGLEMAPS_API_STATUS=true GOOGLEMAPS_API_KEY=YOURGOOGLEMAPSkeyHERE # https://www.google.com/recaptcha/admin#list ENABLE_RECAPTCHA=true RE_CAP_SITE=YOURGOOGLECAPTCHAsitekeyHERE RE_CAP_SECRET=YOURGOOGLECAPTCHAsecretHERE # https://console.developers.google.com/ - NEED OAUTH CREDS GOOGLE_ID=YOURGOOGLEPLUSidHERE GOOGLE_SECRET=YOURGOOGLEPLUSsecretHERE GOOGLE_REDIRECT=https://YOURWEBURLHERE.COM/social/handle/google # https://developers.facebook.com/ FB_ID=YOURFACEBOOKidHERE FB_SECRET=YOURFACEBOOKsecretHERE FB_REDIRECT=https://YOURWEBURLHERE.COM/social/handle/facebook # https://apps.twitter.com/ TW_ID=YOURTWITTERidHERE TW_SECRET=YOURTWITTERkeyHERE TW_REDIRECT=https://YOURWEBURLHERE.COM/social/handle/twitter # https://github.com/settings/applications/new GITHUB_ID=YOURIDHERE GITHUB_SECRET=YOURSECRETHERE GITHUB_URL=https://YOURWEBURLHERE.COM/social/handle/github # https://developers.google.com/youtube/v3/getting-started YOUTUBE_KEY=YOURKEYHERE YOUTUBE_SECRET=YOURSECRETHERE YOUTUBE_REDIRECT_URI=https://YOURWEBURLHERE.COM/social/handle/youtube # https://dev.twitch.tv/docs/authentication/ TWITCH_KEY=YOURKEYHERE TWITCH_SECRET=YOURSECRETHERE TWITCH_REDIRECT_URI=https://YOURWEBURLHERE.COM/social/handle/twitch # https://instagram.com/developer/register/ INSTAGRAM_KEY=YOURKEYHERE INSTAGRAM_SECRET=YOURSECRETHERE INSTAGRAM_REDIRECT_URI=https://YOURWEBURLHERE.COM/social/handle/instagram # https://basecamp.com/ # https://github.com/basecamp/basecamp-classic-api 37SIGNALS_KEY=YOURKEYHERE 37SIGNALS_SECRET=YOURSECRETHERE 37SIGNALS_REDIRECT_URI=https://YOURWEBURLHERE.COM/social/handle/37signals - https://laravel.com/docs/master/authentication
- https://laravel.com/docs/master/authorization
- https://laravel.com/docs/master/routing
- https://laravel.com/docs/master/migrations
- https://laravel.com/docs/master/queries
- https://laravel.com/docs/master/views
- https://laravel.com/docs/master/eloquent
- https://laravel.com/docs/master/eloquent-relationships
- https://laravel.com/docs/master/requests
- https://laravel.com/docs/master/errors
- Update to Laravel 12
- Update to Laravel 10 (Major Changes)
- Update to Laravel 9
- Update to Laravel 8
- Update to Laravel 7 See changes in this PR
- Update to Laravel 6
- Update to Laravel 5.8
- Added Laravel Blocker Package
- Added PHP Info Package
- Update to Bootstrap 4
- Update to Laravel 5.7
- Added optional 2-step account login verfication with Laravel 2-Step Verification
- Added activity logging using Laravel-logger
- Added Configurable Email Notification using Laravel-Exception-Notifier
- Update to Laravel 5.5
- Added User Delete with Goodbye email
- Added User Restore Deleted Account from email with secure token
- Added Soft Deletes and Soft Deletes Management panel
- Added User Account Settings to Profile Edit
- Added User Change Password to Profile Edit
- Added User Delete Account to Profile Edit
- Added Password Strength Meter
- Added hideShowPassword
- Added Admin Routing Details
- Admin PHP Information
- Added Robust Laravel Logging with admin UI using MonoLog
- Added Active Nav states using Laravel Requests
- Added Laravel Debugger with Service Provider to manage status in
.envfile. - Updated Capture IP not found IP address
- Added User Avatar Image AJAX Upload with Dropzone.js
- Added User Gravatar using Gravatar API
- Added Themes Management.
- Add user profiles with seeded list and global view
- Major overhaul on Laravel 5.4
- Update from Laravel 5.1 to 5.2
- Added eloquent editable user profile
- Added IP Capture
- Added Google Maps API v3 for User Location lookup
- Added Google Maps API v3 for User Location Input Geocoding
- Added Google Maps API v3 for User Location Map with Options
- Added CRUD(Create, Read, Update, Delete) User Management
laravel-auth βββ .editorconfig βββ .env βββ .env.example βββ .env.travis βββ .gitattributes βββ .github βΒ Β βββ FUNDING.yml βΒ Β βββ ISSUE_TEMPLATE βΒ Β βΒ Β βββ bug_report.md βΒ Β βΒ Β βββ feature_request.md βΒ Β βΒ Β βββ project-questions-and-help.md βΒ Β βββ dependabot.yml βΒ Β βββ labeler.yml βΒ Β βββ workflows βΒ Β βββ changelog.yml βΒ Β βββ codeql.yml βΒ Β βββ dependency-review.yml βΒ Β βββ deploy.yml βΒ Β βββ gitguardian.yml βΒ Β βββ greetings.yml βΒ Β βββ labeler.yml βΒ Β βββ laravel.yml βΒ Β βββ node.js.yml βΒ Β βββ php.yml βΒ Β βββ sentry.yml βΒ Β βββ stale.yml βββ .gitignore βββ .scripts βΒ Β βββ deploy.sh βββ .styleci.yml βββ .travis.yml βββ CODE_OF_CONDUCT.md βββ LICENSE βββ README.md βββ _config.yml βββ app βΒ Β βββ Console βΒ Β βΒ Β βββ Commands βΒ Β βΒ Β βΒ Β βββ DeleteExpiredActivations.php βΒ Β βΒ Β βββ Kernel.php βΒ Β βββ Exceptions βΒ Β βΒ Β βββ Handler.php βΒ Β βΒ Β βββ SocialProviderDeniedException.php βΒ Β βββ Http βΒ Β βΒ Β βββ Controllers βΒ Β βΒ Β βΒ Β βββ AdminDetailsController.php βΒ Β βΒ Β βΒ Β βββ Auth βΒ Β βΒ Β βΒ Β βΒ Β βββ ActivateController.php βΒ Β βΒ Β βΒ Β βΒ Β βββ AuthenticatedSessionController.php βΒ Β βΒ Β βΒ Β βΒ Β βββ ConfirmablePasswordController.php βΒ Β βΒ Β βΒ Β βΒ Β βββ ForgotPasswordController.php βΒ Β βΒ Β βΒ Β βΒ Β βββ LoginController.php βΒ Β βΒ Β βΒ Β βΒ Β βββ NewPasswordController.php βΒ Β βΒ Β βΒ Β βΒ Β βββ PasswordController.php βΒ Β βΒ Β βΒ Β βΒ Β βββ PasswordResetLinkController.php βΒ Β βΒ Β βΒ Β βΒ Β βββ RegisterController.php βΒ Β βΒ Β βΒ Β βΒ Β βββ RegisteredUserController.php βΒ Β βΒ Β βΒ Β βΒ Β βββ ResetPasswordController.php βΒ Β βΒ Β βΒ Β βΒ Β βββ SocialController.php βΒ Β βΒ Β βΒ Β βββ Controller.php βΒ Β βΒ Β βΒ Β βββ ProfilesController.php βΒ Β βΒ Β βΒ Β βββ RestoreUserController.php βΒ Β βΒ Β βΒ Β βββ SoftDeletesController.php βΒ Β βΒ Β βΒ Β βββ TermsController.php βΒ Β βΒ Β βΒ Β βββ ThemesManagementController.php βΒ Β βΒ Β βΒ Β βββ UserController.php βΒ Β βΒ Β βΒ Β βββ UsersManagementController.php βΒ Β βΒ Β βΒ Β βββ WelcomeController.php βΒ Β βΒ Β βββ Kernel.php βΒ Β βΒ Β βββ Middleware βΒ Β βΒ Β βΒ Β βββ Authenticate.php βΒ Β βΒ Β βΒ Β βββ CheckCurrentUser.php βΒ Β βΒ Β βΒ Β βββ CheckIsUserActivated.php βΒ Β βΒ Β βΒ Β βββ EncryptCookies.php βΒ Β βΒ Β βΒ Β βββ PreventRequestsDuringMaintenance.php βΒ Β βΒ Β βΒ Β βββ RedirectIfAuthenticated.php βΒ Β βΒ Β βΒ Β βββ TrimStrings.php βΒ Β βΒ Β βΒ Β βββ TrustHosts.php βΒ Β βΒ Β βΒ Β βββ TrustProxies.php βΒ Β βΒ Β βΒ Β βββ ValidateSignature.php βΒ Β βΒ Β βΒ Β βββ VerifyCsrfToken.php βΒ Β βΒ Β βββ Requests βΒ Β βΒ Β βΒ Β βββ Auth βΒ Β βΒ Β βΒ Β βΒ Β βββ LoginRequest.php βΒ Β βΒ Β βΒ Β βββ DeleteUserAccount.php βΒ Β βΒ Β βΒ Β βββ UpdateUserPasswordRequest.php βΒ Β βΒ Β βΒ Β βββ UpdateUserProfile.php βΒ Β βΒ Β βββ ViewComposers βΒ Β βΒ Β βββ ThemeComposer.php βΒ Β βββ Logic βΒ Β βΒ Β βββ Activation βΒ Β βΒ Β βΒ Β βββ ActivationRepository.php βΒ Β βΒ Β βββ Macros βΒ Β βΒ Β βββ HtmlMacros.php βΒ Β βββ Mail βΒ Β βΒ Β βββ ExceptionOccured.php βΒ Β βββ Models βΒ Β βΒ Β βββ Activation.php βΒ Β βΒ Β βββ Permission.php βΒ Β βΒ Β βββ Profile.php βΒ Β βΒ Β βββ Role.php βΒ Β βΒ Β βββ Social.php βΒ Β βΒ Β βββ Theme.php βΒ Β βΒ Β βββ User.php βΒ Β βββ Notifications βΒ Β βΒ Β βββ ResetPasswordNotification.php βΒ Β βΒ Β βββ SendActivationEmail.php βΒ Β βΒ Β βββ SendGoodbyeEmail.php βΒ Β βββ Providers βΒ Β βΒ Β βββ AppServiceProvider.php βΒ Β βΒ Β βββ AuthServiceProvider.php βΒ Β βΒ Β βββ BroadcastServiceProvider.php βΒ Β βΒ Β βββ ComposerServiceProvider.php βΒ Β βΒ Β βββ EventServiceProvider.php βΒ Β βΒ Β βββ LocalEnvironmentServiceProvider.php βΒ Β βΒ Β βββ MacroServiceProvider.php βΒ Β βΒ Β βββ RouteServiceProvider.php βΒ Β βββ Traits βΒ Β βΒ Β βββ ActivationTrait.php βΒ Β βΒ Β βββ CaptchaTrait.php βΒ Β βΒ Β βββ CaptureIpTrait.php βΒ Β βββ View βΒ Β βββ Components βΒ Β βββ AppLayout.php βΒ Β βββ GuestLayout.php βββ artisan βββ bootstrap βΒ Β βββ app.php βΒ Β βββ cache βΒ Β βββ .gitignore βΒ Β βββ packages.php βΒ Β βββ services.php βββ composer.json βββ composer.lock βββ config βΒ Β βββ app.php βΒ Β βββ auth.php βΒ Β βββ broadcasting.php βΒ Β βββ cache.php βΒ Β βββ cors.php βΒ Β βββ database.php βΒ Β βββ debugbar.php βΒ Β βββ exceptions.php βΒ Β βββ filesystems.php βΒ Β βββ gravatar.php βΒ Β βββ hashing.php βΒ Β βββ laravel2step.php βΒ Β βββ laravelPhpInfo.php βΒ Β βββ laravelblocker.php βΒ Β βββ logging.php βΒ Β βββ mail.php βΒ Β βββ queue.php βΒ Β βββ roles.php βΒ Β βββ sanctum.php βΒ Β βββ services.php βΒ Β βββ session.php βΒ Β βββ settings.php βΒ Β βββ usersmanagement.php βΒ Β βββ view.php βββ database βΒ Β βββ .gitignore βΒ Β βββ factories βΒ Β βΒ Β βββ UserFactory.php βΒ Β βββ migrations βΒ Β βΒ Β βββ 2014_10_12_000000_create_users_table.php βΒ Β βΒ Β βββ 2014_10_12_100000_create_password_resets_table.php βΒ Β βΒ Β βββ 2016_01_15_105324_create_roles_table.php βΒ Β βΒ Β βββ 2016_01_15_114412_create_role_user_table.php βΒ Β βΒ Β βββ 2016_01_26_115212_create_permissions_table.php βΒ Β βΒ Β βββ 2016_01_26_115523_create_permission_role_table.php βΒ Β βΒ Β βββ 2016_02_09_132439_create_permission_user_table.php βΒ Β βΒ Β βββ 2017_03_09_082449_create_social_logins_table.php βΒ Β βΒ Β βββ 2017_03_09_082526_create_activations_table.php βΒ Β βΒ Β βββ 2017_03_20_213554_create_themes_table.php βΒ Β βΒ Β βββ 2017_03_21_042918_create_profiles_table.php βΒ Β βΒ Β βββ 2017_12_09_070937_create_two_step_auth_table.php βΒ Β βΒ Β βββ 2019_02_19_032636_create_laravel_blocker_types_table.php βΒ Β βΒ Β βββ 2019_02_19_045158_create_laravel_blocker_table.php βΒ Β βΒ Β βββ 2019_08_19_000000_create_failed_jobs_table.php βΒ Β βΒ Β βββ 2019_12_14_000001_create_personal_access_tokens_table.php βΒ Β βΒ Β βββ 2023_02_26_001638_create_email_log.php βΒ Β βββ seeders βΒ Β βββ BlockedItemsTableSeeder.php βΒ Β βββ BlockedTypeTableSeeder.php βΒ Β βββ ConnectRelationshipsSeeder.php βΒ Β βββ DatabaseSeeder.php βΒ Β βββ PermissionsTableSeeder.php βΒ Β βββ RolesTableSeeder.php βΒ Β βββ ThemesTableSeeder.php βΒ Β βββ UsersTableSeeder.php βββ eslint.config.mjs βββ license.svg βββ package-lock.json βββ package.json βββ phpunit.xml βββ postcss.config.js βββ public βΒ Β βββ .htaccess βΒ Β βββ build βΒ Β βΒ Β βββ .vite βΒ Β βΒ Β βΒ Β βββ manifest.json βΒ Β βΒ Β βββ assets βΒ Β βΒ Β βββ app-B7vS8Mbm.css βΒ Β βΒ Β βββ app-BG0_vVbD.js βΒ Β βΒ Β βββ app-BG0_vVbD.js.map βΒ Β βΒ Β βββ app-WPGwnzyH.css βΒ Β βΒ Β βββ app-legacy-DDUFYwBY.js βΒ Β βΒ Β βββ app-legacy-DDUFYwBY.js.map βΒ Β βΒ Β βββ app-legacy-Mb7mMJCE.js βΒ Β βΒ Β βββ app-legacy-Mb7mMJCE.js.map βΒ Β βΒ Β βββ fa-brands-400-D1LuMI3I.ttf βΒ Β βΒ Β βββ fa-brands-400-D_cYUPeE.woff2 βΒ Β βΒ Β βββ fa-regular-400-BjRzuEpd.woff2 βΒ Β βΒ Β βββ fa-regular-400-DZaxPHgR.ttf βΒ Β βΒ Β βββ fa-solid-900-CTAAxXor.woff2 βΒ Β βΒ Β βββ fa-solid-900-D0aA9rwL.ttf βΒ Β βΒ Β βββ fa-v4compatibility-C9RhG_FT.woff2 βΒ Β βΒ Β βββ fa-v4compatibility-CCth-dXg.ttf βΒ Β βΒ Β βββ fontawesome-webfont-B-jkhYfk.woff2 βΒ Β βΒ Β βββ fontawesome-webfont-CDK5bt4p.woff βΒ Β βΒ Β βββ fontawesome-webfont-CQDK8MU3.ttf βΒ Β βΒ Β βββ fontawesome-webfont-D13rzr4g.svg βΒ Β βΒ Β βββ fontawesome-webfont-G5YE5S7X.eot βΒ Β βΒ Β βββ polyfills-legacy-Ci8jmAHT.js βΒ Β βΒ Β βββ polyfills-legacy-Ci8jmAHT.js.map βΒ Β βΒ Β βββ wink.png βΒ Β βΒ Β βββ wink.svg βΒ Β βββ css βΒ Β βΒ Β βββ app.css βΒ Β βββ favicon.ico βΒ Β βββ fonts βΒ Β βΒ Β βββ fontawesome-webfont.eot βΒ Β βΒ Β βββ fontawesome-webfont.svg βΒ Β βΒ Β βββ fontawesome-webfont.ttf βΒ Β βΒ Β βββ fontawesome-webfont.woff βΒ Β βΒ Β βββ fontawesome-webfont.woff2 βΒ Β βΒ Β βββ glyphicons-halflings-regular.eot βΒ Β βΒ Β βββ glyphicons-halflings-regular.svg βΒ Β βΒ Β βββ glyphicons-halflings-regular.ttf βΒ Β βΒ Β βββ glyphicons-halflings-regular.woff βΒ Β βΒ Β βββ glyphicons-halflings-regular.woff2 βΒ Β βββ images βΒ Β βΒ Β βββ wink.png βΒ Β βΒ Β βββ wink.svg βΒ Β βββ index.php βΒ Β βββ robots.txt βΒ Β βββ web.config βββ resources βΒ Β βββ assets βΒ Β βΒ Β βββ js βΒ Β βΒ Β βΒ Β βββ app.js βΒ Β βΒ Β βΒ Β βββ bootstrap.js βΒ Β βΒ Β βΒ Β βββ components βΒ Β βΒ Β βΒ Β βββ ExampleComponent.vue βΒ Β βΒ Β βΒ Β βββ UsersCount.vue βΒ Β βΒ Β βββ sass βΒ Β βΒ Β βΒ Β βββ _avatar.scss βΒ Β βΒ Β βΒ Β βββ _badges.scss βΒ Β βΒ Β βΒ Β βββ _bootstrap-social.scss βΒ Β βΒ Β βΒ Β βββ _buttons.scss βΒ Β βΒ Β βΒ Β βββ _forms.scss βΒ Β βΒ Β βΒ Β βββ _helpers.scss βΒ Β βΒ Β βΒ Β βββ _hideShowPassword.scss βΒ Β βΒ Β βΒ Β βββ _lists.scss βΒ Β βΒ Β βΒ Β βββ _logs.scss βΒ Β βΒ Β βΒ Β βββ _margins.scss βΒ Β βΒ Β βΒ Β βββ _mixins.scss βΒ Β βΒ Β βΒ Β βββ _modals.scss βΒ Β βΒ Β βΒ Β βββ _panels.scss βΒ Β βΒ Β βΒ Β βββ _password.scss βΒ Β βΒ Β βΒ Β βββ _socials.scss βΒ Β βΒ Β βΒ Β βββ _typography.scss βΒ Β βΒ Β βΒ Β βββ _user-profile.scss βΒ Β βΒ Β βΒ Β βββ _variables.scss βΒ Β βΒ Β βΒ Β βββ _visibility.scss βΒ Β βΒ Β βΒ Β βββ _wells.scss βΒ Β βΒ Β βΒ Β βββ app.scss βΒ Β βΒ Β βββ scss βΒ Β βΒ Β βββ .gitkeep βΒ Β βββ lang βΒ Β βΒ Β βββ en βΒ Β βΒ Β βΒ Β βββ auth.php βΒ Β βΒ Β βΒ Β βββ emails.php βΒ Β βΒ Β βΒ Β βββ forms.php βΒ Β βΒ Β βΒ Β βββ modals.php βΒ Β βΒ Β βΒ Β βββ pagination.php βΒ Β βΒ Β βΒ Β βββ passwords.php βΒ Β βΒ Β βΒ Β βββ permsandroles.php βΒ Β βΒ Β βΒ Β βββ profile.php βΒ Β βΒ Β βΒ Β βββ socials.php βΒ Β βΒ Β βΒ Β βββ terms.php βΒ Β βΒ Β βΒ Β βββ themes.php βΒ Β βΒ Β βΒ Β βββ titles.php βΒ Β βΒ Β βΒ Β βββ usersmanagement.php βΒ Β βΒ Β βΒ Β βββ validation.php βΒ Β βΒ Β βββ fr βΒ Β βΒ Β βΒ Β βββ auth.php βΒ Β βΒ Β βΒ Β βββ emails.php βΒ Β βΒ Β βΒ Β βββ forms.php βΒ Β βΒ Β βΒ Β βββ modals.php βΒ Β βΒ Β βΒ Β βββ pagination.php βΒ Β βΒ Β βΒ Β βββ passwords.php βΒ Β βΒ Β βΒ Β βββ permsandroles.php βΒ Β βΒ Β βΒ Β βββ profile.php βΒ Β βΒ Β βΒ Β βββ socials.php βΒ Β βΒ Β βΒ Β βββ titles.php βΒ Β βΒ Β βΒ Β βββ usersmanagement.php βΒ Β βΒ Β βΒ Β βββ validation.php βΒ Β βΒ Β βββ pt-br βΒ Β βΒ Β βββ auth.php βΒ Β βΒ Β βββ emails.php βΒ Β βΒ Β βββ forms.php βΒ Β βΒ Β βββ modals.php βΒ Β βΒ Β βββ pagination.php βΒ Β βΒ Β βββ passwords.php βΒ Β βΒ Β βββ permsandroles.php βΒ Β βΒ Β βββ profile.php βΒ Β βΒ Β βββ socials.php βΒ Β βΒ Β βββ themes.php βΒ Β βΒ Β βββ titles.php βΒ Β βΒ Β βββ usersmanagement.php βΒ Β βΒ Β βββ validation.php βΒ Β βββ views βΒ Β βββ auth βΒ Β βΒ Β βββ activation.blade.php βΒ Β βΒ Β βββ exceeded.blade.php βΒ Β βΒ Β βββ login.blade.php βΒ Β βΒ Β βββ passwords βΒ Β βΒ Β βΒ Β βββ email.blade.php βΒ Β βΒ Β βΒ Β βββ reset.blade.php βΒ Β βΒ Β βββ register.blade.php βΒ Β βββ emails βΒ Β βΒ Β βββ exception.blade.php βΒ Β βββ errors βΒ Β βΒ Β βββ 401.blade.php βΒ Β βΒ Β βββ 403.blade.php βΒ Β βΒ Β βββ 404.blade.php βΒ Β βΒ Β βββ 500.blade.php βΒ Β βΒ Β βββ 503.blade.php βΒ Β βββ home.blade.php βΒ Β βββ layouts βΒ Β βΒ Β βββ app.blade.php βΒ Β βΒ Β βββ guest.blade.php βΒ Β βΒ Β βββ navigation.blade.php βΒ Β βββ modals βΒ Β βΒ Β βββ modal-delete.blade.php βΒ Β βΒ Β βββ modal-form.blade.php βΒ Β βΒ Β βββ modal-save.blade.php βΒ Β βββ pages βΒ Β βΒ Β βββ admin βΒ Β βΒ Β βΒ Β βββ active-users.blade.php βΒ Β βΒ Β βΒ Β βββ home.blade.php βΒ Β βΒ Β βΒ Β βββ route-details.blade.php βΒ Β βΒ Β βββ public βΒ Β βΒ Β βΒ Β βββ terms.blade.php βΒ Β βΒ Β βββ status.blade.php βΒ Β βΒ Β βββ user βΒ Β βΒ Β βββ home.blade.php βΒ Β βββ panels βΒ Β βΒ Β βββ welcome-panel.blade.php βΒ Β βββ partials βΒ Β βΒ Β βββ errors.blade.php βΒ Β βΒ Β βββ form-status.blade.php βΒ Β βΒ Β βββ nav.blade.php βΒ Β βΒ Β βββ search-users-form.blade.php βΒ Β βΒ Β βββ socials-icons.blade.php βΒ Β βΒ Β βββ socials.blade.php βΒ Β βΒ Β βββ status-panel.blade.php βΒ Β βΒ Β βββ status.blade.php βΒ Β βββ profiles βΒ Β βΒ Β βββ edit.blade.php βΒ Β βΒ Β βββ show.blade.php βΒ Β βββ scripts βΒ Β βΒ Β βββ check-changed.blade.php βΒ Β βΒ Β βββ datatables.blade.php βΒ Β βΒ Β βββ delete-modal-script.blade.php βΒ Β βΒ Β βββ form-modal-script.blade.php βΒ Β βΒ Β βββ ga-analytics.blade.php βΒ Β βΒ Β βββ gmaps-address-lookup-api3.blade.php βΒ Β βΒ Β βββ google-maps-geocode-and-map.blade.php βΒ Β βΒ Β βββ save-modal-script.blade.php βΒ Β βΒ Β βββ search-users.blade.php βΒ Β βΒ Β βββ toggleStatus.blade.php βΒ Β βΒ Β βββ tooltips.blade.php βΒ Β βΒ Β βββ user-avatar-dz.blade.php βΒ Β βββ themesmanagement βΒ Β βΒ Β βββ add-theme.blade.php βΒ Β βΒ Β βββ edit-theme.blade.php βΒ Β βΒ Β βββ show-theme.blade.php βΒ Β βΒ Β βββ show-themes.blade.php βΒ Β βββ usersmanagement βΒ Β βΒ Β βββ create-user.blade.php βΒ Β βΒ Β βββ edit-user.blade.php βΒ Β βΒ Β βββ show-deleted-user.blade.php βΒ Β βΒ Β βββ show-deleted-users.blade.php βΒ Β βΒ Β βββ show-user.blade.php βΒ Β βΒ Β βββ show-users.blade.php βΒ Β βββ welcome.blade.php βββ routes βΒ Β βββ api.php βΒ Β βββ channels.php βΒ Β βββ console.php βΒ Β βββ web.php βββ tailwind.config.js βββ tailwindcss-perspective.js βββ vite.config.js- Tree command can be installed using brew:
brew install tree - File tree generated using command
tree -a -I '.git|node_modules|vendor|storage|tests'
Before opening an issue there are a couple of considerations:
- You are all awesome!
- Please Read the instructions and make sure all steps were followed correctly.
- Please Check that the issue is not specific to the development environment setup.
- Please Provide duplication steps.
- Please Attempt to look into the issue, and if you have a solution, make a pull request.
- Please Show that you have made an attempt to look into the issue.
- Please Check to see if the issue you are reporting is a duplicate of a previous reported issue.
Licensed under the MIT license. Enjoy!
- Thanks goes to these wonderful people:
- Please feel free to contribute and make pull requests!


























































