View file File name : login.blade.php Content :<!-- 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.0"> <title>Login</title> <!-- Include Bootstrap stylesheet --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"> <style> body { background-color: #f4f4f4; } .login-container { max-width: 400px; margin: 0 auto; padding: 20px; margin-top: 100px; } </style> </head> <body> <div class="container login-container"> <h2 class="text-center">Login</h2> <form method="POST" action="/authenticate"> @csrf <div class="form-group"> <label for="shop">Enter Shop Name:</label> <input type="text" class="form-control" id="shop" name="shop" required> </div> <button type="submit" class="btn btn-primary btn-block">Login</button> </form> </div> <!-- Include Bootstrap JS and Popper.js --> <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script> </body> </html>