@if (session('flash_success'))
{{ __('Admin::base.success') }}!  {!! session('flash_success') !!}
@endif @if (session('flash_error'))
{{ __('Admin::base.error') }}!  {!! session('flash_error') !!}
@endif @if ( isset($errors) && count( $errors ) > 0 ) @foreach ($errors->all() as $error)
Opps!  {{ $error }}
@endforeach @endif