@extends('layouts.main') @section('title', 'Customize Image') @section('navbar') @include('layouts.navbar') @endsection @section('style') @endsection @section('content')

Customize Images

Please upload a high-resolution image (1000 x 1000 pixels). Only PNG and JPG formats are supported
{{-- --}}
@foreach ($map_imgs as $i => $map_img) @if ($map_img['upload_type'] == 2) @php $img_count = count($map_imgs); $width = 100 / $img_count; @endphp
@csrf @foreach ($map_img['x'] as $j => $x)
@endforeach
@break; @else
@csrf
Mapped Image
@foreach ($map_img['x'] as $j => $x)
@endforeach
@endif @endforeach
@endsection @section('script') {{-- Your existing jQuery logic --}} @php if (request()->query('converted_path') != '') { $converted_path = dec(request()->query('converted_path')); } @endphp @if (isset($converted_path) && $converted_path != '') @endif @endsection