mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-28 03:13:26 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			710 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			710 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @extends('header')
 | |
| 
 | |
| @section('content')
 | |
| 	@parent
 | |
| 
 | |
|     @include('accounts.nav', ['selected' => ACCOUNT_IMPORT_EXPORT])
 | |
| 
 | |
| 	{!! Former::open('/import_csv')->addClass('warn-on-exit') !!}
 | |
| 
 | |
|     @foreach (App\Services\ImportService::$entityTypes as $entityType)
 | |
|         @if (isset($data[$entityType]))
 | |
|             @include('accounts.partials.map', $data[$entityType])
 | |
|         @endif
 | |
|     @endforeach
 | |
| 
 | |
|     {!! 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
 |