@extends('admin.layouts.main') @push('headerCustomCss') @endpush @section('content') @section('panelTitle') {{ trans('ScriptsManage::admin/index.header.css') }} @overwrite @section('panelContent') {!! Form::open(['route' => ['admin::scriptsManage::save::css']]) !!}
{!! Form::textarea('css_editor', $scripts->css, ['style' => 'display: none;']) !!}
/* {{ trans('ScriptsManage::admin/index.texts.css_code_here') }} */
{!! Form::button(trans('global.save'), ['type' => 'button', 'style' => 'margin-top: 15px;', 'class' => 'btn btn-primary save-css-btn']) !!} {!! Form::close() !!} @overwrite @include('admin.layouts.includes.panel') @section('panelTitle') {{ trans('ScriptsManage::admin/index.header.head') }} @overwrite @section('panelContent') {!! Form::open(['route' => ['admin::scriptsManage::save::head']]) !!}
{!! Form::textarea('head_js_editor', $scripts->head_js, ['style' => 'display: none;']) !!}
/* {{ trans('ScriptsManage::admin/index.texts.js_code_here') }} */
{!! Form::textarea('head_html_editor', $scripts->head_html, ['style' => 'display: none;']) !!}
{{ '' }}
{!! Form::button(trans('global.save'), ['type' => 'button', 'style' => 'margin-top: 15px;', 'class' => 'btn btn-primary save-head-btn']) !!} {!! Form::close() !!} @overwrite @include('admin.layouts.includes.panel') @section('panelTitle') {{ trans('ScriptsManage::admin/index.header.body') }} @overwrite @section('panelContent') {!! Form::open(['route' => ['admin::scriptsManage::save::body']]) !!}
{!! Form::textarea('body_js_editor', $scripts->body_js, ['style' => 'display: none;']) !!}
/* {{ trans('ScriptsManage::admin/index.texts.js_code_here') }} */
{!! Form::textarea('body_html_editor', $scripts->body_html, ['style' => 'display: none;']) !!}
{{ '' }}
{!! Form::button(trans('global.save'), ['type' => 'button', 'style' => 'margin-top: 15px;', 'class' => 'btn btn-primary save-body-btn']) !!} {!! Form::close() !!} @overwrite @include('admin.layouts.includes.panel') @section('panelTitle') {{ trans('ScriptsManage::admin/index.header.order') }} @overwrite @section('panelContent') {{ trans('ScriptsManage::admin/index.texts.tags') }}

{!! Form::open(['route' => ['admin::scriptsManage::save::order']]) !!}
{!! Form::textarea('order_js_editor', $scripts->order_js, ['style' => 'display: none;']) !!}
/* {{ trans('ScriptsManage::admin/index.texts.js_code_here') }} */
{!! Form::button(trans('global.save'), ['type' => 'button', 'style' => 'margin-top: 15px;', 'class' => 'btn btn-primary save-order-btn']) !!} {!! Form::close() !!} @overwrite @include('admin.layouts.includes.panel') @endsection @push('footScripts') @endpush