@extends('layout') @section('content')

Kontakt

@if($errors->has())
Ihre Nachricht konnte nicht gesendet werden.
    @foreach($errors->all() as $e)
  • {{ $e }}
  • @endforeach
×
@endif @if(Session::has('success'))
Ihre Nachricht wurde versendet. Vielen Dank!×
@endif {{ Form::open(array('action'=>'HomeController@sendmessage'))}}
{{ Form::label('Nachricht') }} {{ Form::textarea('content') }}
{{ Form::submit('Abschicken',array('class'=>'button tiny')) }} {{ Form::close() }}
@stop