Laravel 8

Laravel 7 Custom Login Form with Ajax

This tutorial will teach you how to make a Login form with Ajax using Laravel 7.we will do step by step along with screen shot images.

First Step

Create Project  – Open the command prompt and run this command

composer create-project --prefer-dist laravel/laravel:^7.0 skcompany

i have gave the project name skcompany. you can use name of the project name

Second Step

After created the project open on vs code editor. after that go to mysql database create a new database name skcompany. after database has been created back to our vs code editor open the  .env file and change database name as skcompany.

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=skcompany
DB_USERNAME=root
DB_PASSWORD=

after done the stuff. we have to do the table migration part.

php artisan migrate

after that by the default laravel created the table users in the mysql database.

After we have to insert some data into the users table in the database. so open the Terminal
and  make a new user from tinker and test using it and run the command

php artisan tinker

write this code

User::create(['name' => 'john', 'email' => 'john@gmail.com', 'password' => Bcrypt('123456')])
this will create a user for you with a hashed password. now the data is added in the database.
After that select the resources folder inside the resources folder have folder name which is views
inside the views folder create a new file login.blade.php. paste the code the inside the login.blade.php page.
<html>
<head>

    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">

    <style type="text/css">
        body,td,th{
            color: #000000;
        }
        body{
            background-color: #F0F0F0;
        }
        .style1
        {
            font-family: arial, helvetica, sans-serif;
            font-size: 14px;
            padding: 12px;
            line-height: 25px;
            border-radius: 4px;
            text-decoration: none;
        }

        .style2
        {
            font-family: arial, helvetica, sans-serif;
            font-size: 17px;
            padding: 12px;
            line-height: 25px;
            border-radius: 4px;
            text-decoration: none;

        }
    </style>
</head>

<body>

<div class="container">
    <table width="100%" height="100%" border="0" cellspacing="0" align="center">
        <tr>
            <td align="center" valign="middle">
                <table class="table-bordered" width="350" border="0" cellpadding="3" cellspacing="3" bgcolor="#FFFFFF">
                    <form name="frm_login" id="frm_login">
                    @csrf
                          <tr>
                              <td height="25" colspan="2" align="left" valign="middle" bgcolor="#FF9900" class="style2">
                                  <div align="center">
                                      <strong>Login</strong>
                                  </div>

                              </td>
                          </tr>

                        <tr>

                            <div id="err" style="color: red">


                            </div>

                        </tr>


                        <tr>
                            <td width="118" align="left" valign="middle" class="style1">Username</td>
                            <td width="118" align="left" valign="middle" class="style1">
                                <input type="text" class="form-control" size="10px" id="username" placeholder="Username" name="username">
                            </td>

                        </tr>

                        <tr>
                            <td width="118" align="left" valign="middle" class="style1">Password</td>
                            <td width="118" align="left" valign="middle" class="style1">
                                <input type="password" class="form-control" size="10px" id="password" placeholder="password" name="password">
                            </td>

                        </tr>

                       

                        <tr>
                            <td colspan="2" align="right" valign="middle" class="style1">

                                <button type="button" class="btn btn-primary" >

After complete the view part let is moving to Controlller part.

Create the Controller

php artisan make:controller UserController

paste the code inside controller

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

class UserController extends Controller
{
    public function index()
    {
        return view('login');
    }
       
    public function check(Request $request)
    {  
        $user = $request->username;
        $pass  = $request->password;

        if (auth()->attempt(array('name' => $user, 'password' => $pass)))
        {
            return response()->json([ [1] ]);
        } 
        else
         {  
            return response()->json([ [3] ]);
         }  
    }

    public function logout(Request $request) 
    {
        Auth::logout();
        $request->session()->flush();
        return redirect()->route('user.login');
    }

}

After that create another view page

Create the another page select the view folder create index.blade.php and paste the below code

<h1>  {{ auth()->user()->name }}<h1>
<p><a href="{{ route('user.logout') }}">Logout</a></p>

Now you can set the Routes

Routes

<h1>welcome<h1>
<h1>  {{ auth()->user()->name }}<h1>
<p><a href="{{ route('user.logout') }}">Logout</a></p>

now you can  run the project type the command

php artisan serve

I have attached the video tutorial below it will help you to do this step by step.

 

admin

Recent Posts

Build Simple Water System Calculator in Java Using Swing

If you're just beginning to learn Java GUI programming creating an Water System Calculator is a fantastic project for…

5 days ago

GitHub Copilot vs Microsoft Copilot Best AI Tool to Use in 2025

GitHub is a powerful tool used by teams and developers around the globe. This guide is…

1 week ago

Chat with Claude AI Free – Your Super-Smart AI Buddy

It's like having a super-smart buddy that is always there to help you write stories,…

2 weeks ago

Best Festivals UK 2025 [Free Guide Included]

The UK is known for its rich history, diverse culture, and most of all  its…

2 weeks ago

Bank Holidays 2025 UK – Plan Your Perfect Long Weekends

Do you have a plan for your next holiday? Being aware of the Bank Holidays within the…

2 weeks ago

Master Cursor AI Full Guide for Students & Creators

The world is rapidly changing of software development AI-assisted tools for coding have become the main focus. As…

2 weeks ago