芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/myvyralapp.com/bck/resources/views/admin/components/modals/language/import.blade.php
@if (admin_permission_by_name("admin.languages.import"))
{{ __("Edit Language") }}
@csrf
{{ __("Language*") }}
Select Language
@foreach ($languages ?? [] as $item)
{{ $item->name }}
@endforeach
@error("language")
{{ $message }}
@enderror
@include('admin.components.form.input-file',[ 'label' => "Language File (.xlsx, .csv)*", 'name' => "file", 'class' => "form--control", 'accept' => ".csv,.xlsx", 'attribute' => "style=height:auto", ])
{{ __("Cancel") }}
{{ __("Update") }}
@push("script") @endpush @endif