@if ($errors->any())
Gagal!
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
{{ Session::get('flash_error') }}
@endif
@if(Session::has('flash_error'))
Gagal!
{{ Session::get('flash_error') }}
@endif
@if(Session::has('flash_success'))
Sukses!
{{ Session::get('flash_success') }}
@endif