HEX
Server: Apache/2.4.41 (Amazon) OpenSSL/1.0.2k-fips PHP/5.6.40
System: Linux ip-172-31-40-18 4.14.146-93.123.amzn1.x86_64 #1 SMP Tue Sep 24 00:45:23 UTC 2019 x86_64
User: apache (48)
PHP: 5.6.40
Disabled: NONE
Upload Files
File: //var/www/html/punjabcabs/resources/views/admin/auth/login.blade.php
@extends('admin.layout.auth')

@section('content')
<form name="form1" class="box" onsubmit="return checkStuff()" method="POST" action="{{ url('/admin/login') }}">
  {{ csrf_field() }}
      <h4>Admin <span>Dashboard</span></h4>
      <h5>Sign in to your account.</h5>
      @if ($errors->has('email'))
          <span class="error" id="msg">{{ $errors->first('email') }}</span>
      @endif
      @if ($errors->has('password'))
         <span class="error" id="msg">{{ $errors->first('password') }}</span> 
      @endif
          <input type="text" name="email" placeholder="Email" autocomplete="off">
          <input type="password" name="password" placeholder="Passsword" id="pwd" autocomplete="off">
          <label>
              <input type="checkbox">
              <span></span>
              <small class="remember">Remember me</small>
          </label>
          <a href="{{ url('/admin/password/reset') }}" class="forgetpass">Forget Password?</a>
          <input type="submit" value="SIGN IN" class="btn1">
</form>
@endsection