@extends('layouts.app', ['title' => 'Importador']) @section('css') @endsection @section('content')

Importador Zip

Voltar
{!!Form::open() ->post() ->route('importador.store') ->multipart() ->id('form') !!}
{!! Form::file('file', 'Arquivo') ->attrs(['accept' => '.zip']) !!}
{!!Form::close()!!}
@endsection @section('js') @endsection