<?php $__env->startSection('css_page_level'); ?>
<link href="<?php echo e(asset('assets/global/plugins/bootstrap-fileinput/bootstrap-fileinput.css')); ?>" rel="stylesheet" type="text/css"/>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('page-content-wrapper'); ?>
	<!-- BEGIN CONTENT -->
	<div class="page-content-wrapper">
		<div class="page-content">
			<!-- BEGIN PAGE HEADER-->
			<h3 class="page-title">
			<?php $setting = app('anlutro\LaravelSettings\Facade'); ?>
			<?php echo e($setting::get('system_name','全方位建築智慧化管理系統')); ?> <small><?php echo e($setting::get('company_name','新保科技')); ?></small>
			</h3>
			<div class="page-bar">
				<ul class="page-breadcrumb">
					<li>
						<i class="fa fa-home"></i>
						<a href="index.html">首頁</a>
						<i class="fa fa-angle-right"></i>
					</li>
					<li>
						<a href="#">資產管理系統</a>
						<i class="fa fa-angle-right"></i>
					</li>
					<li>
						<a href="#">批次匯入</a>
					</li>
				</ul>
				<div class="page-toolbar">

				</div>
			</div>
			<!-- END PAGE HEADER-->
			<!-- BEGIN PAGE CONTENT-->
			<div class="row">
				<div class="col-md-12">
					<?php if($echo_error != ''): ?>
					<div class="alert alert-block alert-danger fade in">
						<button type="button" class="close" data-dismiss="alert"></button>
						<h4 class="alert-heading">匯入資料錯誤</h4>
						<?php foreach($echo_error as $error): ?>
							<li><?php echo e($error); ?></li>
						<?php endforeach; ?>
						<p>
							<a class="btn default" href="<?php echo e(route('manage::asset::assetImport')); ?>">返回批次匯入</a>
						</p>
					</div>
					<?php else: ?>
					<div class="alert alert-block alert-success fade in">
						<button type="button" class="close" data-dismiss="alert"></button>
						<h4 class="alert-heading">上傳成功</h4>
						<p>您上傳的資料已經確認無誤，且建立完成。</p>
						<p>
							<a class="btn default" href="<?php echo e(route('manage::asset::assetImport')); ?>">返回批次匯入</a>
						</p>
					</div>
					<?php endif; ?>
				</div>
			</div>
			<!-- END PAGE CONTENT-->
		</div>
	</div>
	<!-- END CONTENT -->
<?php $__env->stopSection(); ?>

<?php $__env->startSection('plugins_page_level'); ?>

<?php $__env->stopSection(); ?>

<?php $__env->startSection('js_page_level'); ?>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layout.manage', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>