Download Laravel App
composer create-project --prefer-dist laravel/laravel my-app
C:\xampp\htdocs\laravel10project>composer create-project laravel/laravel laravel10project
Connecting our Database
open .env file root directory.
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laraveldb
DB_USERNAME=root
DB_PASSWORD=
Create Controller AuthController
php artisan make:controller AuthController
C:\xampp\htdocs\laravel\laravel10project>php artisan make:controller AuthController
app\Http\Controllers\AuthController.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | //app\Http\Controllers\AuthController.php <?php namespace App\Http\Controllers; use App\Models\User; use Illuminate\Http\Request; use Illuminate\Support\Facades\Auth; use Illuminate\Support\Facades\Hash; class AuthController extends Controller { public function register() { return view( 'register' ); } public function registerPost(Request $request ) { $user = new User(); $user ->name = $request ->name; $user ->email = $request ->email; $user ->password = Hash::make( $request ->password); $user ->save(); return back()->with( 'success' , 'Register successfully' ); } public function login() { return view( 'login' ); } public function loginPost(Request $request ) { $credetials = [ 'email' => $request ->email, 'password' => $request ->password, ]; if (Auth::attempt( $credetials )) { return redirect( '/home' )->with( 'success' , 'Login Success' ); } return back()->with( 'error' , 'Error Email or Password' ); } public function logout() { Auth::logout(); return redirect()->route( 'login' ); } } |
php artisan make:controller HomeController
C:\xampp\htdocs\laravel\laravel10project>php artisan make:controller HomeController
app\Http\Controllers\HomeController.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | //app\Http\Controllers\HomeController.php <?php namespace App\Http\Controllers; use Illuminate\Http\Request; class HomeController extends Controller { public function index() { return view( 'home' ); } } |
Bootstrap 5 https://getbootstrap.com/docs/5.3/getting-started/download/
resources/views/login.blade.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | //resources/views/login.blade.php <!doctype html> <html lang= "en" > <head> <meta charset= "utf-8" > <meta name= "viewport" content= "width=device-width, initial-scale=1" > <title>Laravel 10 Custom Login and Registration - Login Page</title> <link href= "https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel= "stylesheet" integrity= "sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin= "anonymous" > <script src= "https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js" integrity= "sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin= "anonymous" ></script> </head> <body> <div class = "row justify-content-center mt-5" > <div class = "col-lg-4" > <div class = "card" > <div class = "card-header" > <h1 class = "card-title" >Login</h1> </div> <div class = "card-body" > @ if (Session::has( 'error' )) <div class = "alert alert-danger" role= "alert" > {{ Session::get( 'error' ) }} </div> @ endif <form action= "{{ route('login') }}" method= "POST" > @csrf <div class = "mb-3" > <label for = "email" class = "form-label" >Email address</label> <input type= "email" name= "email" class = "form-control" id= "email" placeholder= "name@example.com" required> </div> <div class = "mb-3" > <label for = "password" class = "form-label" >Password</label> <input type= "password" name= "password" class = "form-control" id= "password" required> </div> <div class = "mb-3" > <div class = "d-grid" > <button class = "btn btn-primary" >Login</button> </div> </div> </form> </div> </div> </div> </div> </body> </html> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | //resources/views/register.blade.php <!doctype html> <html lang= "en" > <head> <meta charset= "utf-8" > <meta name= "viewport" content= "width=device-width, initial-scale=1" > <title>Laravel 10 Custom Login and Registration - Register Page</title> <link href= "https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel= "stylesheet" integrity= "sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin= "anonymous" > <script src= "https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js" integrity= "sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin= "anonymous" ></script> </head> <body> <div class = "row justify-content-center mt-5" > <div class = "col-lg-4" > <div class = "card" > <div class = "card-header" > <h1 class = "card-title" >Register</h1> </div> <div class = "card-body" > @ if (Session::has( 'success' )) <div class = "alert alert-success" role= "alert" > {{ Session::get( 'success' ) }} </div> @ endif <form action= "{{ route('register') }}" method= "POST" > @csrf <div class = "mb-3" > <label for = "name" class = "form-label" >Name</label> <input type= "text" name= "name" class = "form-control" id= "name" placeholder= "John Doe" required> </div> <div class = "mb-3" > <label for = "email" class = "form-label" >Email address</label> <input type= "email" name= "email" class = "form-control" id= "email" placeholder= "name@example.com" required> </div> <div class = "mb-3" > <label for = "password" class = "form-label" >Password</label> <input type= "password" name= "password" class = "form-control" id= "password" required> </div> <div class = "mb-3" > <div class = "d-grid" > <button class = "btn btn-primary" >Register</button> </div> </div> </form> </div> </div> </div> </div> </body> </html> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | //resources/views/home.blade.php <!doctype html> <html lang= "en" > <head> <meta charset= "utf-8" > <meta name= "viewport" content= "width=device-width, initial-scale=1" > <title>Laravel 10 Custom Login and Registration</title> <link href= "https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel= "stylesheet" integrity= "sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin= "anonymous" > <script src= "https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js" integrity= "sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin= "anonymous" ></script> </head> <body> <nav class = "navbar navbar-expand-lg bg-body-tertiary" > <div class = "container" > <a class = "navbar-brand" href= "#" >Navbar</a> <button class = "navbar-toggler" type= "button" data-bs-toggle= "collapse" data-bs-target= "#navbarSupportedContent" aria-controls= "navbarSupportedContent" aria-expanded= "false" aria-label= "Toggle navigation" > <span class = "navbar-toggler-icon" ></span> </button> <div class = "collapse navbar-collapse" id= "navbarSupportedContent" > <ul class = "navbar-nav me-auto mb-2 mb-lg-0" > <li class = "nav-item" > <a class = "nav-link active" aria-current= "page" href= "#" >Home</a> </li> </ul> <form action= "{{ route('logout') }}" method= "POST" class = "d-flex" role= "search" > @csrf @method( 'DELETE' ) <button class = "btn btn-danger" type= "submit" >Logout</button> </form> </div> </div> </nav> <div class = "container" > <h1> Welcome, {{ Auth::user()->name }}</h1> </div> </body> </html> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | // <?php use Illuminate\Support\Facades\Route; use App\Http\Controllers\AuthController; use App\Http\Controllers\HomeController; Route::get( '/' , function () { return view( 'welcome' ); }); Route::group([ 'middleware' => 'guest' ], function () { Route::get( '/register' , [AuthController:: class , 'register' ])->name( 'register' ); Route::post( '/register' , [AuthController:: class , 'registerPost' ])->name( 'register' ); Route::get( '/login' , [AuthController:: class , 'login' ])->name( 'login' ); Route::post( '/login' , [AuthController:: class , 'loginPost' ])->name( 'login' ); }); Route::group([ 'middleware' => 'auth' ], function () { Route::get( '/home' , [HomeController:: class , 'index' ]); Route:: delete ( '/logout' , [AuthController:: class , 'logout' ])->name( 'logout' ); }); |
Starting Laravel development server: http://127.0.0.1:8000