PHP Classes

File: resources/views/backend/auth/login.blade.php

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   Devs Hunt   resources/views/backend/auth/login.blade.php   Download  
File: resources/views/backend/auth/login.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Devs Hunt
Manage courses and student enrolment
Author: By
Last change:
Date: 1 month ago
Size: 1,405 bytes
 

Contents

Class file image Download
@extends('backend.auth.layout')

@section('admin_auth_content')
    <div class="p-5">
        <div class="text-center">
            <h1 class="h4 text-gray-900 mb-4">Sign In</h1>
        </div>
        @include('backend.partials.messages')
        <form method="POST" class="user" action="{{ route('admin.login.submit') }}">
            @csrf
            <div class="form-group">
                <input type="email" class="form-control form-control-user" name="email" aria-describedby="emailHelp"
                    placeholder="Enter Email Address...">
            </div>
            <div class="form-group">
                <input type="password" class="form-control form-control-user" name="password" placeholder="Password">
            </div>
            <div class="form-group">
                <div class="custom-control custom-checkbox small">
                    <input type="checkbox" class="custom-control-input" id="remember" name="remember">
                    <label class="custom-control-label" for="remember">Remember Me</label>
                </div>
            </div>
            <button type="submit" class="btn btn-primary btn-user btn-block">
                Login
            </button>
        </form>
        <hr>
        <div class="text-center">
            <a class="small" href="{{ route('admin.forget_password') }}">Forgot Password?</a>
        </div>
    </div>
@endsection