File: /var/www/html/punjabcabs/resources/views/account/auth/login.blade.php
@extends('account.layout.auth')
@section('content')
<form name="form1" class="box" onsubmit="return checkStuff()" method="POST" action="{{ url('/account/login') }}">
{{ csrf_field() }}
<h4>Account <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('/account/password/reset') }}" class="forgetpass">Forget Password?</a>
<input type="submit" value="SIGN IN" class="btn1">
</form>
@endsection