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

@section('content')
<form name="form1" class="box" onsubmit="return checkStuff()" method="POST" action="{{ url('/account/password/reset') }}">
      {{ csrf_field() }}  
      <input type="hidden" name="token" value="{{ $token }}">
        
      <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
      @if ($errors->has('password'))
         <span class="error" id="msg">{{ $errors->first('password') }}</span> 
      @endif
      @if ($errors->has('password_confirmation'))
         <span class="error" id="msg">{{ $errors->first('password_confirmation') }}</span> 
      @endif
          <input type="text" name="email" placeholder="Email" autocomplete="off">
          <input type="password" name="password" placeholder="@lang('admin.password')" id="pwd" autocomplete="off">
          <input type="password" name="password_confirmation" placeholder="@lang('admin.member.re_type')" id="pwd" autocomplete="off">
          <input type="submit" value="@lang('admin.reset_password')" class="btn3">
</form>
@endsection