@if(Session::has('success'))
Success
{{Session::get('success')}}
@endif
@if(Session::has('fails'))
Fail!
{{Session::get('fails')}}
@endif
@if(Session::has('errors'))
Alert!
@if($errors->first('email'))
{!! $errors->first('email', ':message') !!}
@endif
@if($errors->first('fullname'))
{!! $errors->first('fullname', ':message') !!}
@endif
@if($errors->first('phone'))
{!! $errors->first('phone', ':message') !!}
@endif
@if($errors->first('subject'))
{!! $errors->first('subject', ':message') !!}
@endif
@if($errors->first('body'))
{!! $errors->first('body', ':message') !!}
@endif
@endif
{!! Form::close() !!}
@stop