@extends('core::layouts.master') @section('stylesheet') @endsection @section('breadcrumb','Tùy chỉnh giao diện') @section('head-action') {{ Form::bsNavBtnSubmit('Lưu thay đổi','style-form') }} @endsection @section('content')
{!! Form::open([ 'method' => 'POST', 'url' => route('admin.setting.style.store'), 'files' => true, 'id' => 'style-form' ]) !!}
Cấu hình cơ bản
@php($all_fonts = '')
{{ Form::bsSelect('Loại hiệu ứng', 'effect_loading[type]', config('setting.loading_effect'), @$settings['effect_loading']['type']?true:false) }}
Cấu hình nâng cao
Giao diện chung
{{Form::bsSelectBackgroundImage('Ảnh nền', 'wb-body-background-image', @$settings['style']['wb-body-background-image'], ['width'=>45, 'height'=>45])}}
@if(!in_array('product', config('theme.types')[$theme_active['type']]))
@endif
Giao diện header
{{Form::bsSelectBackgroundImage('Ảnh nền header phụ', 'wb-header-top-background-image', @$settings['style']['wb-header-top-background-image'], ['width'=>45, 'height'=>45])}}
{{Form::bsSelectBackgroundImage('Ảnh nền header chính', 'wb-header-main-background-image', @$settings['style']['wb-header-main-background-image'], ['width'=>45, 'height'=>45])}}
{{Form::bsSelectBackgroundImage('Ảnh nền menu', 'wb-header-menu-background-image', @$settings['style']['wb-header-menu-background-image'], ['width'=>45, 'height'=>45])}}
Giao diện footer
{{Form::bsSelectBackgroundImage('Ảnh nền footer chính', 'wb-footer-main-background-image', @$settings['style']['wb-footer-main-background-image'], ['width'=>45, 'height'=>45])}}
{{Form::bsSelectBackgroundImage('Ảnh nền footer phụ', 'wb-footer-bottom-background-image', @$settings['style']['wb-footer-bottom-background-image'], ['width'=>45, 'height'=>45])}}
Tùy chỉnh css
{!! Form::close() !!}
@endsection @section('scripts') @parent {{ Html::script(config('app.assets_url').'/backend/js/plugins/editors/ace/ace.js') }} {{ Html::script(config('app.assets_url').'/backend/js/plugins/pickers/color/spectrum.js') }} @endsection