BloomFeed Upgrade v0.21

This commit is contained in:
Esteban
2026-07-04 03:07:54 +02:00
parent d73c25cbbb
commit 28ba35da13
36 changed files with 1981 additions and 274 deletions
@@ -0,0 +1,8 @@
<form method="POST" action="{{ route('locale.update') }}" class="locale-form">
@csrf
<select name="locale" class="locale-select" onchange="this.form.submit()" title="{{ __('app.language') }}">
@foreach (['fr' => 'Français', 'en' => 'English', 'es' => 'Español', 'de' => 'Deutsch'] as $code => $label)
<option value="{{ $code }}" @selected(app()->getLocale() === $code)>{{ $label }}</option>
@endforeach
</select>
</form>