@if (session('success'))
{{ __('Success!') }}
{{ session('success') }}
@endif
@if (session('error'))
{{ __('Error!') }}
{{ session('error') }}
@endif
@if (isset($errors) && $errors->any())
{{ __('Validation Error!') }}
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@if(isset($importErrors) && count($importErrors) > 0)
{{ __('Import Errors:') }}
@foreach ($importErrors as $error)
- {{ $error }}
@endforeach
@endif