X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/realesbar/platform/packages/theme/resources/views
home
/
gfecatvj
/
sites
/
realesbar
/
platform
/
packages
/
theme
/
resources
/
views
/
📁
..
📄
admin-bar.blade.php
(2.4 KB)
📄
list.blade.php
(3.31 KB)
📄
options.blade.php
(3.42 KB)
📁
partials
📄
setting.blade.php
(1.81 KB)
Editing: options.blade.php
@extends('core/base::layouts.master') @section('content') @php do_action(BASE_ACTION_TOP_FORM_CONTENT_NOTIFICATION, THEME_OPTIONS_MODULE_SCREEN_NAME, request(), null) @endphp <div id="theme-option-header"> <div class="display_header"> <h2>{{ trans('packages/theme::theme.theme_options') }}</h2> </div> <div class="clearfix"></div> </div> <div class="theme-option-container"> {!! Form::open(['route' => 'theme.options', 'method' => 'POST']) !!} <div class="theme-option-sticky"> <div class="info_bar"> <div class="float-left"> @if (ThemeOption::getArg('debug') == true) <span class="theme-option-dev-mode-notice">{{ trans('packages/theme::theme.developer_mode') }}</span>@endif </div> <div class="theme-option-action_bar"> {!! apply_filters(THEME_OPTIONS_ACTION_META_BOXES, null, THEME_OPTIONS_MODULE_SCREEN_NAME) !!} <button type="submit" class="btn btn-primary button-save-theme-options">{{ trans('packages/theme::theme.save_changes') }}</button> </div> </div> </div> <div class="theme-option-sidebar"> <ul class="nav nav-tabs tab-in-left"> @foreach (ThemeOption::constructSections() as $section) <li class="nav-item"> <a href="#tab_{{ $section['id'] }}" class="nav-link @if ($loop->first) active @endif" data-toggle="tab">@if (!empty($section['icon']))<i class="{{ $section['icon'] }}"></i> @endif {{ __($section['title']) }}</a> </li> @endforeach </ul> </div> <div class="theme-option-main"> <div class="tab-content tab-content-in-right"> @foreach(ThemeOption::constructSections() as $section) <div class="tab-pane @if ($loop->first) active @endif" id="tab_{{ $section['id'] }}"> @foreach (ThemeOption::constructFields($section['id']) as $field) <div class="form-group @if ($errors->has($field['attributes']['name'])) has-error @endif"> {!! Form::label($field['attributes']['name'], __($field['label']), ['class' => 'control-label']) !!} {!! ThemeOption::renderField($field) !!} @if (array_key_exists('helper', $field)) <span class="help-block">{!! __($field['helper']) !!}</span> @endif </div> <hr> @endforeach </div> @endforeach </div> </div> <div class="theme-option-sticky"> <div class="info_bar"> <div class="theme-option-action_bar"> {!! apply_filters(THEME_OPTIONS_ACTION_META_BOXES, null, THEME_OPTIONS_MODULE_SCREEN_NAME) !!} <button type="submit" class="btn btn-primary button-save-theme-options">{{ trans('packages/theme::theme.save_changes') }}</button> </div> </div> </div> {!! Form::close() !!} </div> @stop
Upload File
Create Folder