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

{{__('Affiliate Registration Form')}}

@csrf
@foreach (json_decode(\App\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
  • {{__('Text Input')}}
  • {{__('Select')}}
  • {{__('Multiple Select')}}
  • {{__('Radio')}}
  • {{__('File')}}
@endsection @section('script') @endsection