@extends('backend.layout.main') @section('content') @if(session()->has('message'))
{{ session()->get('message') }}
@endif @if(session()->has('not_permitted'))
{{ session()->get('not_permitted') }}
@endif

{{trans('file.Import Purchase')}}

{{trans('file.The field labels marked with * are required input fields')}}.

{!! Form::open(['route' => 'purchase.import', 'method' => 'post', 'files' => true, 'id' => 'purchase-form']) !!}
@if($errors->has('extension')) {{ $errors->first('extension') }} @endif

{{trans('file.The correct column order is')}} (product_code, quantity, purchase_unit_code, cost, discount_per_unit, tax_name) {{trans('file.and you must follow this')}}. {{trans('file.All columns are required')}}

{!! Form::close() !!}
@endsection @push('scripts') @endpush