PHP Classes

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

Recommend this page to a friend!
  Classes of Thierry Feuzeu   Jaxon DB Admin   resources/views/auth/login.blade.php   Download  
File: resources/views/auth/login.blade.php
Role: Auxiliary script
Content typex: text/plain
Description: Configuration script
Class: Jaxon DB Admin
Web application to manage SQL of databases
Author: By
Last change: Update of resources/views/auth/login.blade.php
Date: 2 months ago
Size: 1,766 bytes
 

Contents

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

@section('page-title', __('Login'))

@section('wrapper-class', 'col-lg-5')

@section('content')
                  <form method="POST" action="{{ route('login') }}" class="needs-validation" novalidate="">
                    @csrf

                    <div class="form-floating mb-3">
                      <input class="form-control @error('email')is-invalid @enderror" id="inputEmail" type="email" name="email" placeholder="[email protected]" />
                      <label for="inputEmail">{{ __('Email') }}</label>
                      <div class="invalid-feedback">{{ $errors->first('email') }}</div>
                    </div>

                    <div class="form-floating mb-3">
                      <input class="form-control @error('password')is-invalid @enderror" id="inputPassword" type="password" name="password" placeholder="Password" />
                      <label for="inputPassword">{{ __('Password') }}</label>
                      <div class="invalid-feedback">{{ $errors->first('password') }}</div>
                    </div>

                    <div class="form-check mb-3">
                      <input class="form-check-input" id="inputRememberPassword" type="checkbox" name="remember" checked />
                      <label class="form-check-label" for="inputRememberPassword">{{ __('Remember Me') }}</label>
                    </div>

                    <div class="d-flex align-items-center justify-content-between mt-4 mb-0">
                      <a class="small" href="password.html">{{-- {{ __('Forgot Your Password?') }} --}}</a>
                      <button type="submit" class="btn btn-primary" tabindex="4">{{ __('Login') }}</button>
                    </div>
                  </form>
@endsection