= $this->extend('install/_layout') ?> = $this->section('content') ?> = form_open(route_to('cache-config'), [ 'class' => 'flex flex-col max-w-sm w-full', ]) ?> = csrf_field() ?>
= lang( 'Install.form.cache_config_hint', ) ?>
= form_label(lang('Install.form.cache_handler'), 'db_prefix') ?> = form_dropdown( 'cache_handler', [ 'file' => lang('Install.form.cacheHandlerOptions.file'), 'redis' => lang('Install.form.cacheHandlerOptions.redis'), 'predis' => lang('Install.form.cacheHandlerOptions.predis'), ], old('cache_handler', 'file'), [ 'id' => 'cache_handler', 'name' => 'cache_handler', 'class' => 'form-select mb-6', 'value' => config('Database')->default['DBPrefix'], ], ) ?> = button( lang('Install.form.next') . icon('arrow-right', 'ml-2'), null, ['variant' => 'primary'], ['type' => 'submit', 'class' => 'self-end'], ) ?> = form_close() ?> = $this->endSection() ?>