@extends('admin.layouts.master-soyuz') @section('title','Create New Artwork | ') @section('body') @component('admin.component.breadcumb',['thirdactive' => 'active']) @slot('heading') {{ __('Add Artwork') }} @endslot @slot('menu1') {{ __("Artwork") }} @endslot @slot('menu2') {{ __("Add Artwork") }} @endslot @slot('button')
{{ __("Back")}}
@endslot @endcomponent
@if ($errors->any())
@foreach($errors->all() as $error)
{{ $error}}
×
@endforeach
@endif
{{ __('Create New Artwork') }}
@csrf
{{ __("Artwork Name : ") }}
*
{{ __("Artwork Link : ") }}
*
{{ __("Artwork Brand :") }}
*
@if(!empty($brands_all)) @foreach($brands_all as $brand)
id == old('brand_id') ? 'selected="selected"' : '' }}> {{$brand->name}}
@endforeach @endif
Artist/Art Gallery :
*
Please select store
@foreach($stores as $store)
id ? "selected" : "" }} value="{{ $store->id }}" data-id="{{ $store->code }}"> {{ $store->name }}
@endforeach
Currency Code:
*
Currency code must be a valid ISO-3 code. Find your currency ISO3 code
here
Artwork size:
*
Artwork material:
*
{{ __("Artwork Description : ") }}
*
{{ old('product_detail') }}
{{ __("Artwork Category :") }}
*
{{ __("Please select category") }}
@foreach($categories as $category)
{{ $category->title }}
@endforeach
{{ __("Artwork Subategory :") }}
*
Please Select
{{ __("Childcategory :") }}
Please choose
{{ __("Artwork tag") }} in ({{ app()->getLocale() }}) :
{{ __("Price :") }}
*
{{ __("Offer Price :") }}
{{ __("Tax :") }}
({{__("This tax % will add in given price.")}})
{{ __("Tax name : ") }}
{{ __("Artwork Thumbnail Image :") }}
*
Upload
{{__("Select Artwork thumbnail")}}
{{__("Please select Artwork thumbnail")}}
{{ __('staticwords.MaxFileSize') }} : {{__("300 kb")}}
{{ __("Artwork Hover Thumbnail Image :") }}
*
Upload
{{__("Select Artwork hover thumbnail")}}
{{__("Please select Artwork hover thumbnail")}}
{{ __('staticwords.MaxFileSize') }} : {{__("300 kb")}}
{{ __("Other Artwork Images : ") }}
*
Upload
{{__("Multiple images can be selected")}}
{{__("Multiple images can be choosen")}}
{{ __('staticwords.MaxFileSize') }} : {{__("2 MB")}}
{{ __("Downloadable Artwork File :") }}
*
Upload
Choose file
{{__("Max file size is 50 MB")}}
{{ __("Status :") }}
{{ __("Toggle the Artwork status") }}
{{ __("Featured :") }}
{{ __("Toggle to allow Artwork is featured.") }}
{{ __("Cancel available :") }}
{{ __("Toggle to allow artwork cancellation on order.") }}
{{ __("Cash on delivery available :") }}
{{ __("Toggle to allow COD on Artwork.") }}
{{ __(" Return Available :") }}
*
Please choose an option
Return Available
Return Not Available
{{ __("Select Return Policy :") }}
*
Please select return policy
@foreach(App\admin_return_product::where('status','1')->get() as $policy)
id ? "selected" : "" }} value="{{ $policy->id }}">{{ $policy->name }}
@endforeach
{{ __("Choose Business Type : ") }}
*
@php $all_bcat = App\BusinessCategory::where('status','=','1')->orderBy('title','ASC')->get(); @endphp @if(count($all_bcat)>0) @foreach($all_bcat as $bcat)
{{$bcat->title }} @endforeach @endif
{{ __("Artwork Meta Title : ") }}
{{ __("Artwork Meta Description : ") }}
{{ old('meta_description') }}
170
{{ __('staticwords.Character') }}
{{ __("Reset")}}
{{ __("Create")}}
@endsection @section('custom-script') @endsection