@if ($isSession ?? true) @if (Session::has('success')) @include("cfp.components.alert", [ "style" => "success", "msg" => Session::get("success") ]) @endif @if (Session::has("error")) @include("cfp.components.alert", [ "style" => "warning", "msg" => Session::get("error") ]) @endif @if (Session::has("fatal")) @include("cfp.components.alert", [ "style" => "danger", "msg" => Session::get("fatal") ]) @endif @else @if ($errors->has($name)) @error($name)
{{ $message }}
@enderror @endif @endif