@extends('su-admin.layout.master') @section('content')
@if (session()->has('message')) @endif

Altro

{!! Form::open(['url' => Request::url(), 'method' => 'post', 'class' => 'form-horizontal']) !!}

Debug


{!! Form::checkbox('debug', "1", get_debug_status(), ['class' => 'form-check-input', 'id' => 'debug' ]) !!} {!! Form::label('debug', 'Attiva debug', ['class' => 'form-check-label'] ) !!}
{!! Form::checkbox('debugbar', "1", get_debugbar_status(), ['class' => 'form-check-input', 'id' => 'debugbar' ]) !!} {!! Form::label('debugbar', 'Attiva debugbar', ['class' => 'form-check-label'] ) !!}

Cache


{!! Form::label('cache_type', 'Tipo', ['class' => 'form-label']) !!}
{!! Form::select('cache_type', ['file' => 'File', 'array' => 'Array', 'memcached' => 'Memcached'], get_setting('app', 'cache_type', 'other'), ['class' => 'form-select']) !!}

Sessione


{!! Form::label('session_type', 'Tipo', ['class' => 'form-label']) !!}
{!! Form::select('session_type', ['file' => 'File', 'array' => 'Array', 'memcached' => 'Memcached'], get_setting('app', 'session_type', 'other'), ['class' => 'form-select']) !!}
{!! Form::label('session_lifetime', 'Durata sessione (minuti)', ['class' => 'form-label'] ) !!}
{!! Form::input('number', 'session_lifetime', get_setting('app', 'session_lifetime', 'other'), ['class' => 'form-control']) !!}
{!! Form::submit('Salva', ['class' => 'btn btn-primary btn-fw'] ) !!}
{!! Form::close() !!}
@endsection