@extends('layouts.home') @section('title', 'Empfehler einladen') @section('content')
Empfehler einladen
{{ csrf_field() }}
{!! Form::select('salutation', array('Herr' => 'Herr', 'Frau' => 'Frau'), old('salutation'), array('class' => 'form-control')) !!}
@if ($errors->has('firstname')) {{ $errors->first('firstname') }} @endif
@if ($errors->has('surname')) {{ $errors->first('surname') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@endsection