https://github.com/allphptricks/laravel-custom-user-registration-login
Laravel 10 Custom User Registration and Login Tutorial
https://github.com/allphptricks/laravel-custom-user-registration-login
laravel laravel-10 laravel-login laravel-login-signup login-form login-register login-register-system login-registration login-registration-app login-system registration registration-form registration-login registration-system user-registeration
Last synced: 12 months ago
JSON representation
Laravel 10 Custom User Registration and Login Tutorial
- Host: GitHub
- URL: https://github.com/allphptricks/laravel-custom-user-registration-login
- Owner: allphptricks
- Created: 2023-02-10T12:33:36.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-05-21T05:05:09.000Z (about 2 years ago)
- Last Synced: 2025-04-08T06:34:49.702Z (about 1 year ago)
- Topics: laravel, laravel-10, laravel-login, laravel-login-signup, login-form, login-register, login-register-system, login-registration, login-registration-app, login-system, registration, registration-form, registration-login, registration-system, user-registeration
- Language: PHP
- Homepage: https://www.allphptricks.com/laravel-custom-user-registration-and-login-tutorial/
- Size: 80.1 KB
- Stars: 10
- Watchers: 1
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laravel 10 Custom User Registration and Login Tutorial
Learn how to develop a simple Laravel 10 custom user registration and login application
> The complete tutorial step by step guide is available on my blog. [Laravel 10 Custom User Registration and Login](https://www.allphptricks.com/laravel-custom-user-registration-and-login-tutorial/)
## Blog
https://www.allphptricks.com/
## Installation
Make sure that you have setup the environment properly. You will need minimum PHP 8.1, MySQL/MariaDB, and composer.
1. Download the project (or clone using GIT)
2. Copy `.env.example` into `.env` and configure your database credentials
3. Go to the project's root directory using terminal window/command prompt
4. Run `composer install`
5. Set the application key by running `php artisan key:generate --ansi`
6. Run migrations `php artisan migrate`
7. Start local server by executing `php artisan serve`
8. Visit here [http://127.0.0.1:8000/register](http://127.0.0.1:8000/register) to test the application