@extends('layouts.'.((Session::get('user')->CurrentRole === 'Firm Admin')?'admin':'filer').'-dashboard') @section('heading') Add CC Reconciliation File @stop @section('content')
{{ Form::open(array('class'=>'form addFormWrap ccreconfileForm customform','id'=>'createccreconfile','enctype'=>"multipart/form-data")) }} @if(isset($error_msg)) {{$error_msg}} @endif @if(isset($success_msg)) {{$success_msg}} @endif

* {{ Form::label('filename', 'XLS File') }} {{ Form::file('filename', Input::old('filename'),array('class'=>'inputStyle')) }} @if($errors->has('filename'))

{{$errors->first('filename')}}

@endif

Download Example File

*


  

   {{ Form::submit('Upload File', array('class'=>'btn btn-padding btn-bluebg', 'id' => 'ccreconfileSubmit')) }}

{{ Form::close() }}
@stop @section('scripts_bottom') @stop