@if (Session::has('flash_success'))
Success!
{!! Session::get('flash_success') !!}
@endif
@if (Session::has('flash_error'))
Error!
{!! Session::get('flash_error') !!}
@endif
@if (count($errors->all()) > 0)
Error!
- Something went wrong, please check!
@endif
@if (Session::has('flash_verify'))
{!! Session::get('flash_verify') !!}
@endif
@if (Session::has('error'))
{!! Session::get('error') !!}
@endif
@if (Session::has('success'))
{!! Session::get('success') !!}
@endif