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

Import Menu

{{ Breadcrumbs::render('importmenu') }}
@endsection @section('content')
@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('lblMasterFile', 'Master PRG File'); !!}
{!! Form::file('master_prg') !!}
@endsection