@include('layouts.sub_menu.product')
@if (session('notification') || !empty($notification))
@if(!empty($notification['msg']))
{{$notification['msg']}}
@elseif(session('notification.msg'))
{{ session('notification.msg') }}
@endif
@endif
@component('components.widget', ['class' => 'box-primary', 'title' => __('lang_v1.import_export_product_price')])
{!! Form::open(['url' => action([\App\Http\Controllers\SellingPriceGroupController::class, 'import']), 'method' => 'post', 'enctype' => 'multipart/form-data' ]) !!}
{!! Form::label('name', __( 'product.file_to_import' ) . ':') !!}
{!! Form::file('product_group_prices', ['required' => 'required']); !!}
{!! Form::close() !!}
@lang('lang_v1.instructions'):
- @lang('lang_v1.price_import_instruction_1')
- @lang('lang_v1.price_import_instruction_2')
- @lang('lang_v1.price_import_instruction_3')
- @lang('lang_v1.price_import_instruction_4')
@endcomponent
@stop