@extends('layouts.app') @section('content-header')

Import Menu

{{ Breadcrumbs::render('importmenu') }}
@endsection @section('content')

{{$title}}

@if (count($errors) > 0)
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if ($message = Session::get('success'))
{{ $message }}

Download PRG
@endif @if ($message = Session::get('fail'))
Whoops! There were some problems with your input.

{{ $message }}
@endif
{{ csrf_field() }}
{!! Form::label('lblImportCustomer', 'Customer File'); !!}
{!! Form::file('import_customer', null) !!}
@endsection