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