@extends('admin.layouts.master-soyuz') @section('title','Edit Artwork: '. $product->product_name.' | ') @section('stylesheet') @endsection @section('body') @component('admin.component.breadcumb',['thirdactive' => 'active']) @slot('heading') {{ __('Edit Artwork') }} @endslot @slot('menu1') {{ __("Artwork") }} @endslot @slot('menu2') {{ __("Edit Artwork") }} @endslot @slot('button')
{{ __("Back")}}
@endslot @endcomponent
@if ($errors->any()) @endif
{{__("Edit Artwork")}} {{ $product->product_name }}
@csrf @method('PUT')
Currency code must be a valid ISO-3 code. Find your currency ISO3 code here
({{__("This tax % will add in given price.")}})
Upload
{{__("Please select artwork thumbnail")}}
{{ __('staticwords.MaxFileSize') }} : {{__("300 kb")}}
Upload
{{__("Please select artwork hover thumbnail")}}
{{ __('staticwords.MaxFileSize') }} : {{__("300 kb")}}
Upload
{{__("Multiple images can be choosen")}}
{{ __('staticwords.MaxFileSize') }} : {{__("2 MB")}}

Upload
{{__("Max file size is 50 MB")}}


Toggle the Artwork status.


Featured Artwork will be used as Masterpiece collection in about us page


Toggle to allow artwork cancellation on order.


Toggle to allow COD on artwork.


@php $all_bcat = App\BusinessCategory::where('status','=','1')->orderBy('title','ASC')->get(); @endphp @if(count($all_bcat)>0) @foreach($all_bcat as $bcat) id, explode(",", $product->business_category_id)) ) {{ 'checked' }} @endif value="{{$bcat->id }}">   {{$bcat->title }}     @endforeach @endif

170 {{ __('staticwords.Character') }}

@if($product->thumbnail != '' && file_exists(public_path().'/images/simple_products/'.$product->thumbnail)) {{ $product->thumbnail }} @else {{ $product->thumbnail }} @endif
@if($product->hover_thumbnail != '' && file_exists(public_path().'/images/simple_products/'.$product->hover_thumbnail)) {{ $product->hover_thumbnail }} @else {{ $product->hover_thumbnail }} @endif

@forelse($product->productGallery as $gallery) @if($gallery->image != '' && file_exists(public_path().'/images/simple_products/gallery/'.$gallery->image)) {{ $gallery->image }} @else {{ $gallery->image }} @endif @empty {{__("No images in artwork gallery.")}} @endforelse

{{ $product->product_file }}

{{ __("Manage Inventory") }}

@csrf
{{ __("Cashback Settings") }}

@csrf

{{ __('Edit Artwork Specification') }}
@csrf @if(isset($product->specs)) @foreach($product->specs as $spec) @endforeach @endif
{{ __('Key') }} {{ __('Value') }} #
{{ $spec->prokeys }} {{ $spec->provalues }}
@if(isset($product->specs)) @foreach($product->specs as $spec) @endforeach @endif
@csrf
Upload
{{__("You can upload 20 images at a time.")}}
@forelse($product->frames as $key => $frame)
{{$frame->image}}
@empty {{__("No frames found !")}} @endforelse
@if($product->frames()->count())
@else

{{__("No preview available...")}}

@endif
@foreach($product->faq as $key => $f) @endforeach
# Artwork Name Question Answer Action
{{$key+1}} {{$f->simpleproduct->product_name}} {{ $f->question }} {!!$f->answer!!}
@endsection @section('custom-script') @endsection