@extends('admin.layouts.master') @section('content')

{{ trans('app.custom_styling') }}

@if (config('app.demo') == true)

{{ trans('app.info') }}

{{ trans('messages.demo_restriction') }}
@else {!! Form::open(['route' => 'admin.appearance.custom_css.update', 'id' => 'form', 'data-toggle' => 'validator']) !!}
{!! Form::label('theme_custom_css', trans('app.custom_css') . '*') !!} {!! Form::textarea('theme_custom_css', get_from_option_table('theme_custom_styling' . \Auth::user()->shop_id, ''), ['class' => 'form-control', 'rows' => '10', 'placeholder' => trans('help.custom_css_help_text')]) !!}

{{ trans('help.custom_css_help_text') }}

{!! Form::submit(trans('app.form.save'), ['class' => 'btn btn-lg btn-flat btn-new pull-right ']) !!} {!! Form::close() !!} @endif
@include('admin.customcss._css_example')
@endsection