@extends('layouts.home') @section('title', 'Einladungen') @section('content')
{{ $headline }}
{{ csrf_field() }}
@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
@endif
Zurück
@endsection