Viewing: auth.login.bydefault.php
@extends('layouts.login-layout') <style>a.logo.d-block.mb-2 { color: #CE1717; font-size: 32px; font-weight: 600; }</style> @section('content') <div class="row w-100 mx-0 auth-page"> <div class="col-md-8 col-xl-6 mx-auto"> <div class="card"> <div class="row"> <div class="col-md-4 pe-md-0"> <div class="auth-side-wrapper" style="background-image: url({{ asset('images/login_admin.svg') }});"> </div> </div> <div class="col-md-8 ps-md-0"> <div class="auth-form-wrapper px-4 py-5"> <a href="#" class="logo d-block mb-2">Evolve</a> <h5 class="text-muted fw-normal mb-4">Welcome back! Log in to your account.</h5> <form class="forms-sample" method="POST" action="{{ route('login') }}"> @csrf <div class="mb-3"> <label for="email" class="form-label">Email address</label> <input id="email" type="email" class="form-control{{ $errors->has('email') ? ' is-invalid' : '' }}" name="email" value="{{ old('email') }}" placeholder="Email" required autofocusd> @if ($errors->has('email')) <span class="invalid-feedback" role="alert"> <strong>{{ $errors->first('email') }}</strong> </span> @endif </div> <div class="mb-3"> <label for="password" class="form-label">Password</label> <input id="password" type="password" autocomplete="current-password" placeholder="Password" class="form-control{{ $errors->has('password') ? ' is-invalid' : '' }}" name="password" required> @if ($errors->has('password')) <span class="invalid-feedback" role="alert"> <strong>{{ $errors->first('password') }}</strong> </span> @endif {{-- <input type="password" class="form-control" id="userPassword" autocomplete="current-password" placeholder="Password"> --}} </div> <div class="form-check mb-3"> <input type="checkbox" class="form-check-input" id="authCheck"> <label class="form-check-label" for="authCheck"> Remember me </label> </div> <div> <button type="submit" class="btn btn-primary me-2 mb-2 mb-md-0 text-white"> Login </button> {{-- <a href="../../dashboard.html" class="btn btn-primary me-2 mb-2 mb-md-0 text-white">Login</a> --}} {{-- <button type="button" class="btn btn-outline-primary btn-icon-text mb-2 mb-md-0"> <i class="btn-icon-prepend" data-feather="twitter"></i> Login with twitter </button> --}} </div> {{-- <a href="register.html" class="d-block mt-3 text-muted">Not a user? Sign up</a> --}} </form> </div> </div> </div> </div> </div> </div> @endsection
Return