@extends('layouts.admin') @section('title', trans('import.title', ['type' => trans_choice('general.' . $type, 2)])) @section('content')
{!! Form::open(['url' => $path . '/import', 'files' => true, 'role' => 'form', 'class' => 'form-loading-button']) !!}
{!! trans('import.message', ['link' => url('public/files/import/' . $type . '.xlsx')]) !!}
@stack('import_input_start')
{!! Form::label('import', trans('general.form.select.file'), ['class' => 'control-label']) !!} {!! Form::file('import', null, ['class' => 'form-control']) !!} {!! $errors->first('import', '

:message

') !!}
@stack('import_input_end')
{!! Form::close() !!}
@endsection @push('js') @endpush @push('css') @endpush @push('scripts') @endpush