@if($errors->any())
@foreach($errors->all() as $error)
@php
if ($error == 'validation.confirmed') {
echo 'Password yang anda masukan salah ';
}elseif($error == 'validation.min.string') {
echo 'Password minimal 8 karakter';
}else{
echo $error;
}
@endphp
@endforeach
@endif
@if(session()->has('status'))
{{session()->get('status') }}
@endif