@extends('layouts.app') @section('breadcrumb') @stop @section('content')

Uploaded File Preview (Max 5 rows)

{!! Form::open(['route' => $module.'.bulk-upload','role' => 'form', 'class'=>'form-horizontal bulk-upload-form','id' => 'bulk-upload-form','data-submit'=>'noAjax']) !!}
@foreach($columns as $key => $column) @endforeach @foreach($xls_datas as $xls_data) @foreach($columns as $key => $column) @endforeach @endforeach
{!! Form::label($column)!!} {!! Form::hidden($key,$column) !!}
{{$xls_data[$key]}}
....

{!! Form::submit(trans('messages.upload'),['class' => 'btn btn-primary pull-right']) !!} {!! Form::close() !!}
@stop