@extends('layouts.master') @section('content') {!! Form::open(['route'=>'vendor.import','method'=>'POST','files'=>true]) !!}
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{!! Form::file('file',['class'=>'filestyle','data-buttonname'=>'btn-primary','accept'=>'.csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel']) !!}

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