Change Password
@csrf
@csrf
@if(Session::has('error'))
{{Session::get('error')}}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if ($errors->has('password_confirmation'))
{{ $errors->first('password_confirmation') }}
@endif
@if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif @if (Session::has('message'))
{{ Session::get('message') }}
@endif
Reset Password
Login?