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/account/auth/passwords/email.blade.php
@extends('account.layout.auth')

@section('content')
<form name="form1" class="box" onsubmit="return checkStuff()" method="POST" action="{{ url('/account/password/email') }}">
  {{ csrf_field() }}
      <h4>Account <span>Dashboard</span></h4>
      <h5>@lang('admin.reset_password')</h5>
      @if ($errors->has('email'))
          <span class="error" id="msg">{{ $errors->first('email') }}</span>
      @endif
          <input type="text" name="email" placeholder="Email" value="{{ old('email') }}" autocomplete="off">
          <input type="submit" value="@lang('admin.send_password_reset_link')" class="btn2">
          <a href="{{ url('/account/login') }}" class="forgetpass1">@lang('admin.login_here')</a>
</form>
@endsection