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

{{translate('Seller Verification')}}

{{translate('User Info')}}

{{ $seller->user->name }}

{{ $seller->user->email }}

{{ $seller->user->address }}

{{ $seller->user->phone }}

{{translate('Shop Info')}}

{{ $seller->user->shop->name }}

{{ $seller->user->shop->address }}

{{translate('Verification Info')}}

@foreach (json_decode($seller->verification_info) as $key => $info) @if ($info->type == 'text' || $info->type == 'select' || $info->type == 'radio') @elseif ($info->type == 'multi_select') @elseif ($info->type == 'file') @endif @endforeach
{{ $info->label }}{{ $info->value }} {{ implode(json_decode($info->value), ', ') }} {{translate('Click here')}}
@endsection