@extends("backend.layouts.app") @section("title") {{ __($module_action) }} {{ __($module_title) }} @endsection @section("breadcrumbs") {{ __($module_title) }} {{ __($module_action) }} @endsection @section("content")
@csrf @method('PUT')
@csrf

Click Here Or Drop Files To Upload
@if(count($$module_name['teams']) > 0)

Team Members

@foreach ($$module_name['teams'] as $index => $member) @endforeach
# Profile Image Name Designation Social Links Actions
{{ $index + 1 }} Profile Image {{ $member->name }} {{ $member->designation }} @if($member->facebook) @endif @if($member->linkedin) @endif
@csrf @method('DELETE')
@endif
@csrf @method('POST')
Profile Image (Only one image is allowed as Profile image)

Click Here Or Drop Files To Upload
Upload Photo (Only one image allowed. Upgrade your subscription to upload up to 10 images)

Click Here Or Drop Files To Upload
@foreach($$module_name->brokerUploads as $upload) @if($upload->photo)
@endif @endforeach
Upload Video
@foreach($$module_name->brokerUploads as $upload) @if($upload->youtube_link)
@php $videoId = null; if (preg_match('/(?:youtu\.be\/|youtube\.com\/(?:[^\/\n\s]+\/\S+\/|(?:v|e(?:mbed)?)\/|\S*?[?&]v=))([^"&?\/\s]{11})/i', $upload->youtube_link, $matches)) { $videoId = $matches[1]; } @endphp @if($videoId)
@else

Invalid YouTube link.

@endif
@endif @endforeach
@csrf @method('PUT')
@csrf
@if(!$is_subscribed)
A subscription is required to add reviews. Upgrade now to share your feedback!
Total Reviews: {{$broker_review}}

@endif

Click Here Or Drop Files To Upload
@if(count($$module_name['reviews']) > 0)

Broker Reviews

@foreach ($$module_name['reviews'] as $index => $review) @endforeach
# Client Image Reviewer Name Review Rating Actions
{{ $index + 1 }} Client Image {{ $review->client_name }}
{{ $review->client_designation }}
{{ $review->client_review }} @for ($i = 1; $i <= 5; $i++) @endfor
@csrf @method('DELETE')
@endif
@csrf @method('PATCH')
@endsection