@if($business_license_choose === 'now')
@if($user->files->count())
@foreach($user->files()->whereIdentifier('business_license')->get() as $file)
{{ $file->formatBytes() }}
{{--
--}}
@if(strtolower($file->ext ) == 'pdf')
@else
 }})
@endif
@endforeach
@endif
@endif
@if(!$business_license_choose || $business_license_choose == 'later' || $business_license_choose === 'non')
{!! Form::open(['action' => route('user_documents_store', ['business_license']), 'method' => 'post', 'files' => true, 'enctype' => 'multipart/form-data', 'class' => 'dropzone', 'id' => 'businesslDropzone' ]) !!}
{!! Form::close() !!}
{{ __('register.wizard_business_license_line_1') }}
@if($user->files->count())
@foreach($user->files()->whereIdentifier('business_license')->get() as $file)
{{ $file->formatBytes() }}
@if(strtolower($file->ext ) == 'pdf')
@else
 }})
@endif
@endforeach
@endif
@endif
@if($business_license_choose !== 'now')
{!! Form::open(['action' => route('user_documents_store', ['business_license'])]) !!}
{{__('register.business_license_non_text')}}
{{ Form::textarea('non_business_license_reason', (string) $user->account->getNotice('business_license_reason'), array('placeholder'=>__('Begründung'), 'class'=>'form-control', 'rows'=>' 2')) }}