@if(session('success'))
Success!
{{ session('success') }}
@endif
@if (session('error'))
Error!
{{ session('error') }}
{{-- The alert component can be used to highlight certain parts of your page for higher content visibility. --}}
@endif
@if ($errors->any())
Error!
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
{{-- The alert component can be used to highlight certain parts of your page for higher content visibility. --}}
@endif