@extends('admin.layouts.master') @section('page.name', __('Customize')) @push('css') @endpush @section('page.body')

{{__('Customize')}}

{{__('Template Setup')}}

{!! Form::model(platformSettings(), ['class' => 'form form-horizontal']) !!}

{{__('Template')}}

{!! Form::label('template', __('Template'), ['class' => 'col-md-3']) !!}
{!! Form::select('template', platform_templates(), null, ['is' => 'select2', 'class' => 'form-control', 'required']) !!}

{{__('Theme')}}

{!! Form::label('theme_color', __('Color'), ['class' => 'col-md-3']) !!}
{!! Form::select('theme_color', platform_theme_colors(), null, ['is' => 'select2', 'class' => 'form-control', 'required']) !!}

{{__('This will be applied to all pages in the User Area.')}}

{!! Form::label('style', __('Custom CSS')) !!} {!! Form::textarea('style', null, ['rows' => 6, 'class' => 'form-control']) !!}
{!! Form::close() !!}
@endsection @push('scripts') @endpush