@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', ], ) !!}
@endcomponent

@endsection @section('javascript') @endsection