@extends('Admin.Layouts.modal')
@section('title')
{{ trans('front.export') }}
@stop
@section('body')
{!! Form::open(['route' => 'admin.objects.export', 'method' => 'POST', 'id' => 'objects_export']) !!}
{!! Form::label('format', trans('validation.attributes.format')) !!}
{!! Form::select('format', $formats, null, ['class' => 'form-control']) !!}
{!! Form::label('fields', trans('validation.attributes.fields').'*:') !!}
{!! Form::select('fields[]', $fields, null, ['class' => 'form-control multiexpand half', 'multiple' => 'multiple', 'data-live-search' => true, 'data-actions-box' => true]) !!}
{!! Form::close() !!}
@stop
@section('footer')
@stop