{!! 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
@foreach($root_categories as $category)
-
@if($product->category_id == $category->id)
{{ $category->name }} (@lang('ID:') {{ $category->id }}) (@lang('Root'))
@else
{{ $category->name }} (@lang('ID:') {{ $category->id }})
@endif
@if(count($category->categories))
@include('partials.manage.product-edit-subcategories', ['childs' => $category->categories, 'product_category_id'=> $product->category_id])
@endif
@endforeach
@endif --}}
{{-- @if($product->category)
@endif --}}
@lang('Specification Type') |
@lang('Value') |
{{-- @lang('Unit') | --}}
|
@if(count($product->specificationTypes) > 0)
@foreach($product->specificationTypes as $product_specification_type)
{!! 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)')])!!}
| --}}
|
@endforeach
@else
{!! 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')])!!}
| --}}
|
@endif
@lang('Hightlight') |
{{-- @lang('Value') | --}}
|
@if(count($custom_fields = unserialize($product->custom_fields)) > 0 && is_array($custom_fields))
@foreach($custom_fields as $key => $field)
{!! Form::text('custom_field_name[]', $field, ['class'=>'form-control', 'placeholder'=>__('Name')])!!}
|
{{--
{!! Form::text('custom_field_value[]', $field, ['class'=>'form-control', 'placeholder'=>__('Value')])!!}
| --}}
|
@endforeach
@else
{!! Form::text('custom_field_name[]', null, ['class'=>'form-control', 'placeholder'=>__('Name')])!!}
|
{{--
{!! Form::text('custom_field_value[]', null, ['class'=>'form-control', 'placeholder'=>__('Value')])!!}
| --}}
|
@endif
{!! 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']) !!}
{!! 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')