{!! Form::label('name', 'Product Name *') !!}
{!! Form::text('name', $product->name, ['class'=>'form-control', 'placeholder'=>'Enter name', 'required'])!!}
{!! Form::label('model', 'Product Code *') !!}
{!! Form::text('model', $product->model, ['class'=>'form-control', 'placeholder'=>'Product Code *', 'required'])!!}
Category
Choose Option
@foreach($root_categories as $category)
@if(count($category->categories) > 0)
{{$category->name}}
@include('partials.manage.subcategories-select', ['childs' => $category->categories, 'space'=>1, 'selected_id' => $product->category_id])
@else
{{$category->name}}
@endif
@endforeach
Specification Type
Value
{{-- 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
Add More
@lang('Product Highlists:')
@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
@lang('Add More')
{!! 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', $product->price, ['id' => 'selling_price', 'class'=>'form-control', 'step'=>'any', 'placeholder'=>__('Enter selling price'), 'required', '']) !!}
{!! Form::label('tax_rate', __('Tax Rate *')) !!}
{!! Form::number('tax_rate', $product->tax_rate, ['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', $product->in_stock, ['class'=>'form-control', 'placeholder'=>'Enter number in stock', 'required']) !!}
{!! Form::label('qty_per_order','Maximum allowed Quantity per Order') !!}
{!! Form::number('qty_per_order', $product->qty_per_order, ['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 Featured Image', ['class'=>'btn btn-default btn-file']) !!}
{!! Form::file('photo',['class'=>'form-control', 'style'=>'display: none;','onchange'=>'$("#upload-file-info").html(files[0].name)']) !!}
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')
{!! Form::label('photos[]', 'Choose More Images', ['class'=>'btn btn-default btn-file']) !!}
{!! Form::file('photos[]',['class'=>'form-control', 'multiple', 'style'=>'display: none;','onchange'=>'$("#upload-files-info").html(moreImagesNames(files))']) !!}
No image chosen
(Hold Ctrl to select multiple images)
{!! Form::label('meta_title','Meta Title:') !!}
{!! Form::text('meta_title', $product->meta_title, ['class'=>'form-control', 'placeholder'=>'Enter meta title']) !!}
{!! Form::label('meta_desc','Meta Description:') !!}
{!! Form::text('meta_desc', $product->meta_desc, ['class'=>'form-control', 'placeholder'=>'Enter meta description']) !!}
{!! Form::label('meta_keywords','Meta Keywords:') !!}
{!! Form::text('meta_keywords', $product->meta_keywords, ['class'=>'form-control', 'placeholder'=>'Enter meta keywords']) !!}