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

Export

{{ Breadcrumbs::render('export') }}
@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('lblExport', 'Export'); !!} {!! Form::select( 'txtExport', $options, '', [ 'class' => 'chosen-select form-control', 'data-placeholder' => 'Select Export...' ] ); !!}
@endsection