@extends('backend.layouts.app') @section('content')
{{ translate('Seller Verification') }}
{{ translate('User Info') }}

{{ translate('Name') }} : {{ $shop->user->name }}

{{translate('Email')}} {{ $shop->user->email }}

{{translate('Address')}} {{ $shop->user->address }}

{{translate('Phone')}} {{ $shop->user->phone }}


{{ translate('Shop Info') }}

{{translate('Shop Name')}} {{ $shop->user->shop->name }}

{{translate('Address')}} {{ $shop->address }}

{{ translate('Verification Info') }}
@foreach (json_decode($shop->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