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

Temi

{!! Form::open(['url' => Request::url(), 'method' => 'post', 'class' => 'form-horizontal']) !!}
@php $themes = [ "" => "Nessun tema" ]; foreach (list_themes() as $theme) { $theme_name = $theme->name; if( $theme->child !== false ){ $theme_name .= " (Child of " . $theme->child . ")"; } $theme_name .= " - v." . $theme->version; $themes[$theme->path] = $theme_name; } @endphp
{!! Form::label('theme_default', 'Seleziona tema default', ['class' => 'form-label'] ) !!}
{!! Form::select('theme_default', $themes, current_theme_setting('default'), ['class' => 'form-select' ]) !!}
{!! Form::label('theme_customers', 'Seleziona tema clienti', ['class' => 'form-label'] ) !!}
{!! Form::select('theme_customers', $themes, current_theme_setting('customers'), ['class' => 'form-select' ]) !!}
{!! Form::label('theme_agents', 'Seleziona tema agenti', ['class' => 'form-label'] ) !!}
{!! Form::select('theme_agents', $themes, current_theme_setting('agents'), ['class' => 'form-select' ]) !!}
{!! Form::submit('Salva', ['class' => 'btn btn-primary'] ) !!}
{!! Form::close() !!}
@endsection