@if(session()->has('product_updated')) @endif @include('includes.form_errors')
@can('read', App\Location::class)
@lang('Location:') @if($product->location) {{$product->location->name}} @else @lang('None') @endif

@endcan {!! Form::model($product, ['method'=>'patch', 'id' => 'product-form-validation', 'action'=>['ManageProductsController@update', $product->id], 'files'=>true]) !!}
@if($product->photo) @lang('Product')
@endif
@if($product->template_photo) @lang('Product')
@endif
@if(count($product->photos) > 0)

@foreach($product->photos as $photo)
@lang('Product')
@if($photo->variant_color) @endif
@if($loop->iteration % 6 == 0)
@endif @endforeach
@endif
{!! Form::label('name', __('Product Name *')) !!} {!! Form::text('name', null, ['class'=>'form-control', 'placeholder'=>__('Enter product name *'), 'required'])!!}
{!! Form::label('model', __('Product Code *')) !!} {!! Form::text('model', null, ['class'=>'form-control', 'placeholder'=>__('Enter product code *'), 'required'])!!}
{{-- @if(count($root_categories) > 0)
@lang('Category:') @if(!$product->category) @lang('None') @else {{ $product->category->name }} (@lang('ID:') {{ $product->category->id }})@endif
@endif --}} {{-- @if($product->category)
@endif --}}
{{-- --}} @if(count($product->specificationTypes) > 0) @foreach($product->specificationTypes as $product_specification_type) {{-- --}} @endforeach @else {{-- --}} @endif
@lang('Specification Type') @lang('Value')@lang('Unit')
{!! Form::select('specification_type[]', $specification_types, $product_specification_type->id, ['class'=>'form-control selectpicker', 'data-style'=>'btn-default']) !!} {!! Form::text('specification_type_value[]', $product_specification_type->pivot->value, ['class'=>'form-control', 'placeholder'=>__('Example: 14, 3.5, red')])!!} {!! Form::text('specification_type_unit[]', $product_specification_type->pivot->unit, ['class'=>'form-control', 'placeholder'=>__('kg, GHz (Leave blank if no unit)')])!!}
{!! Form::select('specification_type[]', $specification_types, null, ['class'=>'form-control selectpicker', 'data-style'=>'btn-default']) !!} {!! Form::text('specification_type_value[]', null, ['class'=>'form-control', 'placeholder'=>__('Example: 14, 3.5')])!!} {!! Form::text('specification_type_unit[]', null, ['class'=>'form-control', 'placeholder'=>__('Example: inch, kg')])!!}

{{-- --}} @if(count($custom_fields = unserialize($product->custom_fields)) > 0 && is_array($custom_fields)) @foreach($custom_fields as $key => $field) {{-- --}} @endforeach @else {{-- --}} @endif
@lang('Hightlight')@lang('Value')
{!! Form::text('custom_field_name[]', $field, ['class'=>'form-control', 'placeholder'=>__('Name')])!!} {!! Form::text('custom_field_value[]', $field, ['class'=>'form-control', 'placeholder'=>__('Value')])!!}
{!! Form::text('custom_field_name[]', null, ['class'=>'form-control', 'placeholder'=>__('Name')])!!} {!! Form::text('custom_field_value[]', null, ['class'=>'form-control', 'placeholder'=>__('Value')])!!}
{!! Form::label('description', __('Description')) !!} {!! Form::textarea('description', $product->description, ['class'=>'form-control', 'placeholder'=>__('Enter description')]) !!}
{!! Form::label('fabric_details', __('Fabric Details')) !!} {!! Form::textarea('fabric_details', $product->fabric_details, ['class'=>'form-control', 'placeholder'=>__('Enter fabric details')]) !!}
{!! Form::label('return_exchange_policy', __('Return & Exchange Policy')) !!} {!! Form::textarea('return_exchange_policy', $product->return_exchange_policy, ['class'=>'form-control', 'placeholder'=>__('Enter return & exchange policy')]) !!}
{!! Form::label('regular_price', __('Regular Price *')) !!} {!! Form::number('regular_price', $product->old_price, ['id' => 'regular_price', 'class'=>'form-control', 'step'=>'any', 'placeholder'=>__('Enter regular price'), 'required']) !!}
{!! Form::label('price', __('Base Selling Price *')) !!} {!! Form::number('price', null, ['id' => 'selling_price', 'class'=>'form-control', 'step'=>'any', 'placeholder'=>__('Enter selling price'), 'required', '']) !!}
{!! Form::label('tax_rate', __('Tax Rate *')) !!} {!! Form::number('tax_rate', null, ['class'=>'form-control', 'step'=>'any', 'min'=>0, 'max'=>100, 'placeholder'=>__('Enter tax rate'), 'required']) !!}
@if($product->variant_colors->count() > 0) @foreach($product->variant_colors as $variant_color) @endforeach @endif
Color * Product Code * Images *
Variants


@foreach($variant_color->options as $option) @endforeach
Size * Qty * Price *
Add Size
Add Color

{!! Form::label('in_stock', __('Number in Stock')) !!} {!! Form::number('in_stock', null, ['class'=>'form-control', 'placeholder'=>__('Enter number in stock'), 'required']) !!}
{!! Form::label('qty_per_order', __('Maximum allowed Quantity per Order')) !!} {!! Form::number('qty_per_order', null, ['class'=>'form-control', 'placeholder'=>__('Enter maximum allowed quantity per order'), 'required']) !!}
{!! Form::label('status', __('Status')) !!} {!! Form::select('status', [0=>__('inactive'), 1=>__('active')], $product->is_active, ['class'=>'form-control selectpicker', 'data-style'=>'btn-default']) !!}
{!! Form::label('photo', __('Choose Thumbnail Image (1989px*1326px)'), ['class'=>'btn btn-default btn-file']) !!} {!! Form::file('photo',['class'=>'form-control', 'style'=>'display: none;','onchange'=>'$("#upload-file-info").html(files[0].name)']) !!} @lang('No image chosen')
{!! Form::label('template_photo', __('Choose Template Image'), ['class'=>'btn btn-default btn-file']) !!} {!! Form::file('template_photo',['class'=>'form-control', 'style'=>'display: none;','onchange'=>'$("#upload-file-info1").html(files[0].name)']) !!} @lang('No image chosen')
@include('partials.manage.meta-fields')
{!! Form::submit(__('Update'), ['class'=>'btn btn-primary col-xs-6 col-sm-6 pull-left', 'name'=>'submit_button']) !!}
{!! Form::close() !!}
{!! Form::model($product, ['method'=>'patch', 'action'=>['ManageProductsController@storeMoreImages', $product->id], 'class'=>'dropzone']) !!}