@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($type === 'sms') @if(!Auth::user()->mobile_verified && !Auth::user()->hasRole('seller'))

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

Zur Verifizierung
@endif
@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
Vorschau
@if($recommend instanceof \App\Account) @include('partials/coupon', [ 'seller' => $recommend, 'agent' => Auth::user(), ]) @else @include('partials/coupon', [ 'template' => $recommend, 'agent' => Auth::user(), ]) @endif
@endsection @section('after-scripts') @endsection