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

Import Store Setting

{{ Breadcrumbs::render('importstore') }}
@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', null) !!}
{!! Form::label('lblStore', 'Store'); !!} {!! Form::select( 'txtStore', $stores, null, [ 'class' => 'chosen-select form-control', 'data-placeholder' => 'Select Store ...' ] ); !!}
@endsection