@if (session()->has('custom_flash_notification'))
@foreach(get_custom_flash('custom_flash_notification') as $flash)
{!! $flash['message'] !!}
@endforeach
@endif
@if(isset($errors) && count($errors) > 0)
@foreach($errors->all() as $error)
- {!! $error !!}
@endforeach
@endif