@extends('layouts.app') @section('title', __('sync::lang.sync')) @section('content') @lang('sync::lang.create_new_sync') @csrf @component('components.widget', ['class' => 'box-solid']) {!! Form::label('sync_type', __('sync::lang.sync_type')) !!} {!! Form::select( 'sync_type', [ 'all_products' => __('sync::lang.all_products'), 'specific_product' => __('sync::lang.specific_product'), 'brand' => __('product.brand'), 'category' => __('product.category'), ], null, [ 'class' => 'form-control', 'id' => 'sync_type', ], ) !!} {!! Form::label('brand_id', __('product.brand') . ': (' . __('lang_v1.optional') . ')') !!} {!! Form::select('brand_id', $brands, null, [ 'placeholder' => __('messages.please_select'), 'class' => 'form-control select2', 'style' => 'width:100%;', ]) !!} {!! Form::text('search_product', null, [ 'class' => 'form-control', 'id' => 'search_product_for_srock_adjustment', 'placeholder' => __('stock_adjustment.search_product') ]) !!} @lang('sale.product') @lang('lang_v1.sku') @lang('lang_v1.image') {!! Form::label('category_id', __('product.category') . ': (' . __('lang_v1.optional') . ')') !!} {!! Form::select('category_id', $categories, null, [ 'placeholder' => __('messages.please_select'), 'class' => 'form-control select2', 'style' => 'width:100%;', ]) !!} @endcomponent @lang('messages.save')