mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 18:07:35 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			604 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			604 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| @extends('accounts.nav')
 | |
| 
 | |
| @section('content')
 | |
| 	@parent
 | |
| 
 | |
| 	{{ Former::open_for_files('company/import_map')->addClass('col-md-9 col-md-offset-1') }}
 | |
| 	{{ Former::legend('Import Client Data') }}
 | |
| 	{{ Former::file('file')->label('Select CSV file') }}
 | |
| 	{{ Former::actions( Button::lg_info_submit('Upload')->append_with_icon('open') ) }}
 | |
| 	{{ Former::close() }}
 | |
| 
 | |
|   {{ Former::open('company/export')->addClass('col-md-9 col-md-offset-1') }}
 | |
|   {{ Former::legend('Export Client Data') }}
 | |
|   {{ Former::actions( Button::lg_primary_submit('Download')->append_with_icon('download-alt') ) }}
 | |
|   {{ Former::close() }}
 | |
| 
 | |
| @stop |