@extends('layouts.app') @section('content')

Reset Password

{{ csrf_field() }}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif

Password must include the following requirements:

  • Be at least twelve characters long
  • Contain at least one uppercase letter (A-Z)
  • Contain at least one lowercase letter (a-z)
  • Contain at least one number (0-9)
  • Contain at least one special character (e.g. @,#,$,% )
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
@endsection