Attributes
Add Attributes
@if(Session::has('error_message'))
Error: {{ Session::get('error_message')}}
@endif
@if(Session::has('success_message'))
Success: {{ Session::get('success_message')}}
@endif
@if($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif