@extends('adminlte::page') @section('title','Importer') @section('content_header')

Importer proizvoda iz Excel fajlova


@if(count($errors) > 0)
Greška!

@endif @if($message = Session::get('success'))
{{ $message }}
@endif {{--
{{ csrf_field() }}
.xls, .xslx
--}} {!! Form::open(array( 'url' => "/admin/importer/import", 'method' => 'post', 'class' => 'form-horizontal', 'id' =>'categories-form', 'role'=>'form', 'files'=>'true', )) !!} {{ csrf_field() }}
{!! Form::label( 'Opload file') !!} {!! Form::file( 'select_file') !!} {!! Form::submit(Lang::get('Upload'), array('class' => 'btn btn-success')) !!} {!!Form::close()!!}
podržani formati: .xls, .xslx
@stop