<?php $__env->startSection('css_page_level'); ?>
<link rel="stylesheet" type="text/css" href="<?php echo e(asset('assets/global/plugins/bootstrap-select/bootstrap-select.min.css')); ?>"/>
<link rel="stylesheet" type="text/css" href="<?php echo e(asset('assets/global/plugins/bootstrap-fileinput/bootstrap-fileinput.css')); ?>"/>
<link rel="stylesheet" type="text/css" href="<?php echo e(asset('assets/global/plugins/clockface/css/clockface.css')); ?>"/>
<link rel="stylesheet" type="text/css" href="<?php echo e(asset('assets/global/plugins/bootstrap-datepicker/css/bootstrap-datepicker3.min.css')); ?>"/>
<link rel="stylesheet" type="text/css" href="<?php echo e(asset('assets/global/plugins/bootstrap-timepicker/css/bootstrap-timepicker.min.css')); ?>"/>
<link rel="stylesheet" type="text/css" href="<?php echo e(asset('assets/global/plugins/bootstrap-daterangepicker/daterangepicker-bs3.css')); ?>"/>
<link rel="stylesheet" type="text/css" href="<?php echo e(asset('assets/global/plugins/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css')); ?>"/>
<link rel="stylesheet" type="text/css" href="<?php echo e(asset('assets/global/plugins/bootstrap-select/bootstrap-select.min.css')); ?>"/>
<link rel="stylesheet" type="text/css" href="<?php echo e(asset('assets/global/plugins/select2/css/select2.css')); ?>"/>
<link rel="stylesheet" type="text/css" href="<?php echo e(asset('assets/global/plugins/select2/css/select2-bootstrap.min.css')); ?>"/>
<link rel="stylesheet" type="text/css" href="<?php echo e(asset('assets/global/plugins/bootstrap-switch/css/bootstrap-switch.min.css')); ?>"/>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('page-content-wrapper'); ?>
	<div class="page-content-wrapper" id="main">
		<div class="page-content">
			<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="<?php echo e(route('manage::index')); ?>"><?php echo app('translator')->get('messages.homepage'); ?></a>
						<i class="fa fa-angle-right"></i>
					</li>
					<li>
						<a href="javascript:;">社區管理</a>
						<i class="fa fa-angle-right"></i>
					</li>
					<li>
						<a href="">全功能開關設定</a>
					</li>
				</ul>
			</div>
			<div class="row">
				<div class="col-md-12">
					<div class="portlet box purple-studio">
						<div class="portlet-title">
							<div class="caption">
								最高管理者開關設定
							</div>
							<ul class="nav nav-tabs">
								<li class="active">
									<a href="#carousel_1" data-toggle="tab">
									後台功能列表 </a>
								</li>
								<li>
									<a href="#carousel_2" data-toggle="tab">
									櫃台功能列表 </a>
								</li>
								<li>
									<a href="#carousel_3" data-toggle="tab">
									其他 </a>
								</li>
							</ul>
						</div>
						<div class="portlet-body form">
							<form action="<?php echo e(action('AdminSettingController@store')); ?>" method="POST" class="form-horizontal form-bordered"  enctype="multipart/form-data">
								<div class="tab-content">
									<div class="tab-pane active" id="carousel_1">
										<?php for($i=0;$i<count($manage_name);$i+=4): ?>
										<div class="form-group">
											<label class="control-label col-md-1"><?php echo e($manage_name[$i]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($manage_correspond[$i]) == 'show'): ?>
													<input type="checkbox" name="<?php echo e($manage_correspond[$i]); ?>" class="make-switch" data-on-text="<?php echo app('translator')->get('messages.show'); ?>" data-off-text="<?php echo app('translator')->get('messages.not_show'); ?>" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($manage_correspond[$i]); ?>" class="make-switch" data-on-text="<?php echo app('translator')->get('messages.show'); ?>" data-off-text="<?php echo app('translator')->get('messages.not_show'); ?>">
												<?php endif; ?>
											</div>
											<?php if($i+1 < count($manage_name)): ?>
											<label class="control-label col-md-1"><?php echo e($manage_name[$i+1]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($manage_correspond[$i+1]) == 'show'): ?>
													<input type="checkbox" name="<?php echo e($manage_correspond[$i+1]); ?>" class="make-switch" data-on-text="<?php echo app('translator')->get('messages.show'); ?>" data-off-text="<?php echo app('translator')->get('messages.not_show'); ?>" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($manage_correspond[$i+1]); ?>" class="make-switch" data-on-text="<?php echo app('translator')->get('messages.show'); ?>" data-off-text="<?php echo app('translator')->get('messages.not_show'); ?>">
												<?php endif; ?>
											</div>
											<?php endif; ?>
											<?php if($i+2 < count($manage_name)): ?>
											<label class="control-label col-md-1"><?php echo e($manage_name[$i+2]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($manage_correspond[$i+2]) == 'show'): ?>
													<input type="checkbox" name="<?php echo e($manage_correspond[$i+2]); ?>" class="make-switch" data-on-text="<?php echo app('translator')->get('messages.show'); ?>" data-off-text="<?php echo app('translator')->get('messages.not_show'); ?>" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($manage_correspond[$i+2]); ?>" class="make-switch" data-on-text="<?php echo app('translator')->get('messages.show'); ?>" data-off-text="<?php echo app('translator')->get('messages.not_show'); ?>">
												<?php endif; ?>
											</div>
											<?php endif; ?>
											<?php if($i+3 < count($manage_name)): ?>
											<label class="control-label col-md-1"><?php echo e($manage_name[$i+3]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($manage_correspond[$i+3]) == 'show'): ?>
													<input type="checkbox" name="<?php echo e($manage_correspond[$i+3]); ?>" class="make-switch" data-on-text="<?php echo app('translator')->get('messages.show'); ?>" data-off-text="<?php echo app('translator')->get('messages.not_show'); ?>" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($manage_correspond[$i+3]); ?>" class="make-switch" data-on-text="<?php echo app('translator')->get('messages.show'); ?>" data-off-text="<?php echo app('translator')->get('messages.not_show'); ?>">
												<?php endif; ?>
											</div>
											<?php endif; ?>
										</div>
										<?php endfor; ?>
									</div>
									<div class="tab-pane" id="carousel_2">
										<?php for($i=0;$i<count($console_name);$i+=4): ?>
										<div class="form-group">
											<label class="control-label col-md-1"><?php echo e($console_name[$i]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($console_correspond[$i]) == 'show'): ?>
													<input type="checkbox" name="<?php echo e($console_correspond[$i]); ?>" class="make-switch" data-on-text="<?php echo app('translator')->get('messages.show'); ?>" data-off-text="<?php echo app('translator')->get('messages.not_show'); ?>" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($console_correspond[$i]); ?>" class="make-switch" data-on-text="<?php echo app('translator')->get('messages.show'); ?>" data-off-text="<?php echo app('translator')->get('messages.not_show'); ?>">
												<?php endif; ?>
											</div>
											<?php if($i+1 < count($console_name)): ?>
											<label class="control-label col-md-1"><?php echo e($console_name[$i+1]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($console_correspond[$i+1]) == 'show'): ?>
													<input type="checkbox" name="<?php echo e($console_correspond[$i+1]); ?>" class="make-switch" data-on-text="<?php echo app('translator')->get('messages.show'); ?>" data-off-text="<?php echo app('translator')->get('messages.not_show'); ?>" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($console_correspond[$i+1]); ?>" class="make-switch" data-on-text="<?php echo app('translator')->get('messages.show'); ?>" data-off-text="<?php echo app('translator')->get('messages.not_show'); ?>">
												<?php endif; ?>
											</div>
											<?php endif; ?>
											<?php if($i+2 < count($console_name)): ?>
											<label class="control-label col-md-1"><?php echo e($console_name[$i+2]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($console_correspond[$i+2]) == 'show'): ?>
													<input type="checkbox" name="<?php echo e($console_correspond[$i+2]); ?>" class="make-switch" data-on-text="<?php echo app('translator')->get('messages.show'); ?>" data-off-text="<?php echo app('translator')->get('messages.not_show'); ?>" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($console_correspond[$i+2]); ?>" class="make-switch" data-on-text="<?php echo app('translator')->get('messages.show'); ?>" data-off-text="<?php echo app('translator')->get('messages.not_show'); ?>">
												<?php endif; ?>
											</div>
											<?php endif; ?>
											<?php if($i+3 < count($console_name)): ?>
											<label class="control-label col-md-1"><?php echo e($console_name[$i+3]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($console_correspond[$i+3]) == 'show'): ?>
													<input type="checkbox" name="<?php echo e($console_correspond[$i+3]); ?>" class="make-switch" data-on-text="<?php echo app('translator')->get('messages.show'); ?>" data-off-text="<?php echo app('translator')->get('messages.not_show'); ?>" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($console_correspond[$i+3]); ?>" class="make-switch" data-on-text="<?php echo app('translator')->get('messages.show'); ?>" data-off-text="<?php echo app('translator')->get('messages.not_show'); ?>">
												<?php endif; ?>
											</div>
											<?php endif; ?>
										</div>
										<?php endfor; ?>
									</div>
									<div class="tab-pane" id="carousel_3">

										<div class="form-group">
											<label class="control-label col-md-1"><?php echo e($other_name[0]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($other_correspond[0]) == 'show'): ?>
													<input type="checkbox" name="<?php echo e($other_correspond[0]); ?>" class="make-switch" data-on-text="<?php echo app('translator')->get('messages.show'); ?>" data-off-text="<?php echo app('translator')->get('messages.not_show'); ?>" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($other_correspond[0]); ?>" class="make-switch" data-on-text="<?php echo app('translator')->get('messages.show'); ?>" data-off-text="<?php echo app('translator')->get('messages.not_show'); ?>">
												<?php endif; ?>
											</div>
											<label class="control-label col-md-1"><?php echo e($other_name[1]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($other_correspond[1]) == '1'): ?>
													<input type="checkbox" name="<?php echo e($other_correspond[1]); ?>" class="make-switch" data-on-text="套用" data-off-text="不套用" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($other_correspond[1]); ?>" class="make-switch" data-on-text="套用" data-off-text="不套用">
												<?php endif; ?>
											</div>
											<label class="control-label col-md-1"><?php echo e($other_name[2]); ?></label>
											<div class="col-md-2">
												<input type="text" name="<?php echo e($other_correspond[2]); ?>" class="form-control" value="<?php echo e($setting::get($other_correspond[2])); ?>">
											</div>
											<label class="control-label col-md-1"><?php echo e($other_name[3]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($other_correspond[3]) == 'on'): ?>
													<input type="checkbox" name="<?php echo e($other_correspond[3]); ?>" class="make-switch" data-on-text="啟用" data-off-text="不啟用" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($other_correspond[3]); ?>" class="make-switch" data-on-text="啟用" data-off-text="不啟用">
												<?php endif; ?>
											</div>
										</div>
										<div class="form-group">
											<label class="control-label col-md-1"><?php echo e($other_name[4]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($other_correspond[4]) == 'show'): ?>
													<input type="checkbox" name="<?php echo e($other_correspond[4]); ?>" class="make-switch" data-on-text="啟用" data-off-text="不啟用" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($other_correspond[4]); ?>" class="make-switch" data-on-text="啟用" data-off-text="不啟用">
												<?php endif; ?>
											</div>
											<label class="control-label col-md-1"><?php echo e($other_name[5]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($other_correspond[5]) == 'show'): ?>
													<input type="checkbox" name="<?php echo e($other_correspond[5]); ?>" class="make-switch" data-on-text="啟用" data-off-text="不啟用" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($other_correspond[5]); ?>" class="make-switch" data-on-text="啟用" data-off-text="不啟用">
												<?php endif; ?>
											</div>
											<label class="control-label col-md-1"><?php echo e($other_name[6]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($other_correspond[6]) == '1'): ?>
													<input type="checkbox" name="<?php echo e($other_correspond[6]); ?>" class="make-switch" data-on-text="套用" data-off-text="不套用" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($other_correspond[6]); ?>" class="make-switch" data-on-text="套用" data-off-text="不套用">
												<?php endif; ?>
											</div>
											<label class="control-label col-md-1"><?php echo e($other_name[7]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($other_correspond[7]) == 'on'): ?>
													<input type="checkbox" name="<?php echo e($other_correspond[7]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($other_correspond[7]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉">
												<?php endif; ?>
											</div>
										</div>
										<div class="form-group">
											<label class="control-label col-md-1"><?php echo e($other_name[8]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($other_correspond[8]) == 'on'): ?>
													<input type="checkbox" name="<?php echo e($other_correspond[8]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($other_correspond[8]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉">
												<?php endif; ?>
											</div>
											<label class="control-label col-md-1"><?php echo e($other_name[9]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($other_correspond[9]) == 'on'): ?>
													<input type="checkbox" name="<?php echo e($other_correspond[9]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($other_correspond[9]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉">
												<?php endif; ?>
											</div>
											<label class="control-label col-md-1"><?php echo e($other_name[10]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($other_correspond[10]) == 'on'): ?>
													<input type="checkbox" name="<?php echo e($other_correspond[10]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($other_correspond[10]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉">
												<?php endif; ?>
											</div>
											<label class="control-label col-md-1"><?php echo e($other_name[11]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($other_correspond[11]) == 'on'): ?>
													<input type="checkbox" name="<?php echo e($other_correspond[11]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($other_correspond[11]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉">
												<?php endif; ?>
											</div>
										</div>
										<div class="form-group">
											<label class="control-label col-md-1"><?php echo e($other_name[12]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($other_correspond[12]) == 'on'): ?>
													<input type="checkbox" name="<?php echo e($other_correspond[12]); ?>" class="make-switch" data-on-text="小版" data-off-text="大版" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($other_correspond[12]); ?>" class="make-switch" data-on-text="小版" data-off-text="大版">
												<?php endif; ?>
											</div>
											<label class="control-label col-md-1"><?php echo e($other_name[13]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($other_correspond[13]) == 'on'): ?>
													<input type="checkbox" name="<?php echo e($other_correspond[13]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($other_correspond[13]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉">
												<?php endif; ?>
											</div>
											<label class="control-label col-md-1"><?php echo e($other_name[14]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($other_correspond[14]) == 'on'): ?>
													<input type="checkbox" name="<?php echo e($other_correspond[14]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($other_correspond[14]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉">
												<?php endif; ?>
											</div>
											<label class="control-label col-md-1"><?php echo e($other_name[15]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($other_correspond[15]) == 'on'): ?>
													<input type="checkbox" name="<?php echo e($other_correspond[15]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($other_correspond[15]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉">
												<?php endif; ?>
											</div>

										</div>
										<div class="form-group">
											<label class="control-label col-md-1"><?php echo e($other_name[16]); ?></label>
											<div class="col-md-2">
												<select class="form-control" name="<?php echo e($other_correspond[16]); ?>">
													<option value="<?php echo e($setting::get($other_correspond[16])); ?>">
														<?php
															switch ($setting::get($other_correspond[16])) {
																case 'nsst':
																	echo '新保';
																	break;

																case 'tlt':
																	echo '遵宇';
																	break;
															}
														?>
													</option>
													<option value="nsst">新保</option>
													<option value="tlt">遵宇</option>
												</select>
											</div>

											<label class="control-label col-md-1"><?php echo e($other_name[17]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($other_correspond[17]) == 'on'): ?>
													<input type="checkbox" name="<?php echo e($other_correspond[17]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($other_correspond[17]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉">
												<?php endif; ?>
											</div>

											<label class="control-label col-md-1">語系</label>
											<div class="col-md-2">
												<select class="form-control" name="lang_setting">
													<option value="<?php echo e($lang->lang); ?>">
														<?php
															switch ($lang->lang) {
																case 'zh':
																	echo '社區';
																	break;

																case 'zh-building':
																	echo '大樓';
																	break;
															}
														?>
													</option>
													<option value="zh">社區</option>
													<option value="zh-building">大樓</option>
												</select>
											</div>

											<label class="control-label col-md-1">簡訊點數</label>
											<div class="col-md-2">
												<?php if($sms_point == 'Not_Open'): ?>
												<input type="text" value="無開通此功能" class="form-control" readonly>
												<input type="hidden" name="sms_point" class="form-control" value="<?php echo e($sms_point); ?>">
												<?php else: ?>
												<input type="number" name="sms_point" class="form-control" value="<?php echo e($sms_point); ?>">
												<?php endif; ?>
											</div>
										</div>
										<div class="form-group">
											<label class="control-label col-md-1"><?php echo e($other_name[18]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($other_correspond[18]) == '1'): ?>
													<input type="checkbox" name="<?php echo e($other_correspond[18]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($other_correspond[18]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉">
												<?php endif; ?>
											</div>
											<label class="control-label col-md-1"><?php echo e($other_name[19]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($other_correspond[19]) == 'show'): ?>
													<input type="checkbox" name="<?php echo e($other_correspond[19]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($other_correspond[19]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉">
												<?php endif; ?>
											</div>
											<label class="control-label col-md-1"><?php echo e($other_name[20]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($other_correspond[20]) == 'on'): ?>
													<input type="checkbox" name="<?php echo e($other_correspond[20]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($other_correspond[20]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉">
												<?php endif; ?>
											</div>
											<label class="control-label col-md-1"><?php echo e($other_name[21]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($other_correspond[21]) == 'on'): ?>
													<input type="checkbox" name="<?php echo e($other_correspond[21]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($other_correspond[21]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉">
												<?php endif; ?>
											</div>
										</div>

										<div class="form-group">
											<label class="control-label col-md-1"><?php echo e($other_name[22]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($other_correspond[22]) == 'on'): ?>
													<input type="checkbox" name="<?php echo e($other_correspond[22]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($other_correspond[22]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉">
												<?php endif; ?>
											</div>
											<label class="control-label col-md-1"><?php echo e($other_name[23]); ?></label>
											<div class="col-md-2">
												<?php if($setting::get($other_correspond[23]) == 'show'): ?>
													<input type="checkbox" name="<?php echo e($other_correspond[23]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉" checked>
												<?php else: ?>
													<input type="checkbox" name="<?php echo e($other_correspond[23]); ?>" class="make-switch" data-on-text="開啟" data-off-text="關閉">
												<?php endif; ?>
											</div>
										</div>

									</div>

									<div class="form-actions">
                                        <div class="row">
                                            <div class="col-md-offset-3 col-md-9">
                                            	<input type="hidden" id="_token" name="_token" value="<?php echo e(csrf_token()); ?>">
                                                <button type="submit" class="btn purple pull-right"><i class="fa fa-check"></i> <?php echo app('translator')->get('messages.submit'); ?></button>
                                            </div>
                                        </div>
                                    </div>
								</div>
							</form>
						</div>
					</div>
					<!-- END PORTLET-->
				</div>
			</div>
		</div>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('plugins_page_level'); ?>
<script type="text/javascript" src="<?php echo e(asset('assets/global/plugins/jquery-validation/js/jquery.validate.min.js')); ?>"></script>
<script type="text/javascript" src="<?php echo e(asset('assets/global/plugins/bootbox/bootbox.min.js')); ?>"></script>
<script type="text/javascript" src="<?php echo e(asset('assets/global/plugins/bootstrap-datepicker/js/bootstrap-datepicker.min.js')); ?>"></script>
<script type="text/javascript" src="<?php echo e(asset('assets/global/plugins/bootstrap-fileinput/bootstrap-fileinput.js')); ?>"></script>
<script type="text/javascript" src="<?php echo e(asset('assets/global/plugins/bootstrap-timepicker/js/bootstrap-timepicker.min.js')); ?>"></script>
<script type="text/javascript" src="<?php echo e(asset('assets/global/plugins/clockface/js/clockface.js')); ?>"></script>
<script type="text/javascript" src="<?php echo e(asset('assets/global/plugins/bootstrap-daterangepicker/moment.min.js')); ?>"></script>
<script type="text/javascript" src="<?php echo e(asset('assets/global/plugins/bootstrap-daterangepicker/daterangepicker.js')); ?>"></script>
<script type="text/javascript" src="<?php echo e(asset('assets/global/plugins/bootstrap-colorpicker/js/bootstrap-colorpicker.js')); ?>"></script>
<script type="text/javascript" src="<?php echo e(asset('assets/global/plugins/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js')); ?>"></script>
<script type="text/javascript" src="<?php echo e(asset('assets/global/plugins/bootstrap-fileinput/additional-methods.js')); ?>"></script>
<script type="text/javascript" src="<?php echo e(asset('assets/global/plugins/bootstrap-select/bootstrap-select.min.js')); ?>"></script>
<script type="text/javascript" src="<?php echo e(asset('assets/global/plugins/select2/js/select2.min.js')); ?>"></script>
<script type="text/javascript" src="<?php echo e(asset('assets/global/plugins/bootstrap-switch/js/bootstrap-switch.min.js')); ?>"></script>
<?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(); ?>