@extends('layouts.admin') @section('title', trans('import.title', ['type' => trans_choice($namespace . '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')
...
{!! $errors->first('import', '

:message

') !!}
@stack('import_input_end')
{!! Form::close() !!}
@endsection