mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
24 lines
735 B
PHP
24 lines
735 B
PHP
@extends('header')
|
|
|
|
@section('content')
|
|
@parent
|
|
|
|
@include('accounts.nav', ['selected' => ACCOUNT_IMPORT_EXPORT])
|
|
|
|
{!! Former::open('/import_csv')->addClass('warn-on-exit') !!}
|
|
|
|
@if (isset($data[ENTITY_CLIENT]))
|
|
@include('accounts.partials.map', $data[ENTITY_CLIENT])
|
|
@endif
|
|
|
|
@if (isset($data[ENTITY_INVOICE]))
|
|
@include('accounts.partials.map', $data[ENTITY_INVOICE])
|
|
@endif
|
|
|
|
{!! Former::actions(
|
|
Button::normal(trans('texts.cancel'))->large()->asLinkTo(URL::to('/settings/import_export'))->appendIcon(Icon::create('remove-circle')),
|
|
Button::success(trans('texts.import'))->submit()->large()->appendIcon(Icon::create('floppy-disk'))) !!}
|
|
|
|
{!! Former::close() !!}
|
|
|
|
@stop |