@if(Session::has('message'))
{{ __(Session::get('message')) }}
@endif
@if(Session::has('success'))
{{ __(Session::get('success')) }}
@endif
@if(Session::has('error'))
{{ __(Session::get('error')) }}
@endif
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ __($error) }}
@endforeach
@endif