@extends('layouts.app') @section('title', __('lang_v1.update_product_price')) @section('content')

@lang( 'lang_v1.update_product_price' )

@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'):

  1. @lang('lang_v1.price_import_instruction_1')
  2. @lang('lang_v1.price_import_instruction_2')
  3. @lang('lang_v1.price_import_instruction_3')
  4. @lang('lang_v1.price_import_instruction_4')
@endcomponent
@stop