@cspMetaTag(App\Support\Csp\Policies\CustomPolicy::class)
@csrf @if ($errors->has('password')) {{ $errors->first('password') }} @endif
*
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif *
@if (Session::has('danger'))
@php Session::forget('danger'); @endphp
@endif @if (Session::has('success'))
@php Session::forget('success'); @endphp
@endif @if(Session::has('error'))
Errors!
@foreach(Session::get('error') as $err) {{ $err }}
@endforeach @php Session::forget('error'); @endphp
@endif