@extends('frontend.layouts.app') @section('content')

{{ translate('Affiliate Informations') }}

@csrf @if (!Auth::check())
{{translate('User Info')}}
@endif
{{translate('Verification info')}}
@foreach (json_decode($verification_form) as $key => $element) @if ($element->type == 'text')
@elseif($element->type == 'file')
@elseif ($element->type == 'select' && is_array(json_decode($element->options)))
@elseif ($element->type == 'multi_select' && is_array(json_decode($element->options)))
@elseif ($element->type == 'radio')
@foreach (json_decode($element->options) as $value)
@endforeach
@endif @endforeach
@endsection