@extends('onboarding.main') @section('content')

Empfehlen Sie dieses Unternehmen an Ihren Kontakt

@if($type === 'email')
@else @endif {{ 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($type === 'sms')
@if ($errors->has('mobile')) {{ $errors->first('mobile') }} @endif
@if ($errors->has('smsText')) {{ $errors->first('smsText') }} @endif
@else
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('emailText')) {{ $errors->first('emailText') }} @endif
@endif
@include('onboarding/agent/coupon', [ 'seller' => $recommend, 'agent' => Auth::user(), ])
@endsection