Skip to content

ChiperSage/Login-Register-Laravel11

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Overview: User Authentication and Management

This code implements a basic user authentication and management system in a Laravel application, utilizing MySQL as the database. The system includes functionalities for user login, registration, and management. It also involves creating and applying database migrations to set up the necessary tables.

Key Components:

  1. User Registration and Login:

    • Registration: Allows users to create a new account by providing their details.
    • Login: Authenticates users by verifying their credentials and manages user sessions.
  2. User Management:

    • Updating User Information: Allows users to update their profile details.
    • Password Management: Includes functionality for password resetting and updating.
  3. Database Migrations:

    • users Table: Stores user information such as email, password, and other details.
    • groups Table: Defines groups to which users can belong.
    • roles Table: Defines roles that users can have.

Database Migration Files:

  • create_users_table: Defines columns for user details.
  • create_groups_table: Defines columns for group details.
  • create_roles_table: Defines columns for role details.

Usage:

  • Laravel11
  • MYSQL
  1. Migration: Apply migrations to create the database structure.

    php artisan migrate
    php artisan db:seed
  2. Authentication: Implement login and registration routes/controllers.


This summary provides an overview of how user authentication and management are set up, including the database structure and migration process.

About

This project demonstrates a user management system using Laravel 11 with features such as user listing, adding, editing, and deleting. It includes form validation, password hashing, and proper security measures.

Topics

Resources

Stars

6 stars

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors