@extends('seller.layouts.app') @section('panel_content')

{{ translate('Shop Verification')}} ({{ translate('Visit Shop')}}))

@csrf

{{ translate('Verification info')}}

@php $verification_form = get_setting('verification_form'); @endphp
@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