@extends('layouts.login') @section('title') Reset Password @endsection @section('content')
users view avatar

CPA Portal

Reset password
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif @if ($errors->has('cpassword'))
{{ $errors->first('cpassword') }}
@endif @if ($errors->has('password_confirmation'))
{{ $errors->first('password_confirmation') }}
@endif
Password rule
{{--
# Characters (a-zA – Z) at least one upper and lower
--}} {{--
# Base 10 digits (0 – 9) at least one
--}}
# Base 6 digits (0 – 9) at least one
{{--
# At least one Non-alphanumeric (!, $, #, or %)
--}} {{--
# Unicode characters
--}}
Operation and Maintenance by cns_logo
{!! csrf_field() !!}
@endsection