@extends('backend.layouts.app') @section('content')
{{ translate('Affiliate Registration Form')}}
@csrf
@foreach (json_decode(\App\Models\AffiliateConfig::where('type', 'verification_form')->first()->value) as $key => $element) @if ($element->type == 'text' || $element->type == 'file')
@elseif ($element->type == 'select' || $element->type == 'multi_select' || $element->type == 'radio')
@if (is_array(json_decode($element->options))) @foreach (json_decode($element->options) as $value)
@endforeach @endif
@endif @endforeach
  • {{translate('Text Input')}}
  • {{translate('Select')}}
  • {{translate('Multiple Select')}}
  • {{translate('Radio')}}
  • {{translate('File')}}
@endsection @section('script') @endsection