@extends('layouts.home') @section('title', 'RECO.BON Versenden') @section('content')
RECO.BONS Versenden
{{ 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(!Auth::user()->mobile_verified)

Ihre Handynummer {{ Auth::user()->mobile }} ist noch nicht verifiziert.

Zur Verifizierung
@endif
@if ($errors->has('mobile')) {{ $errors->first('mobile') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('emailtext')) {{ $errors->first('emailtext') }} @endif
@endsection