@extends('panel::layouts.app') @section('title', __('panel/menu.plugins')) @section('content')
{{ $plugin->getLocaleName() }}
@csrf {{ method_field('put') }}
@foreach ($fields as $field) @if ($field['type'] == 'image') @if ($field['recommend_size'] ?? false)
{{ __('common.recommend_size') }} {{ $field['recommend_size'] }}
@endif
@endif @if ($field['type'] == 'string') @endif @if ($field['type'] == 'multi-string') @endif @if ($field['type'] == 'select') @if (isset($field['description']))
{{ $field['description'] }}
@endif
@endif @if ($field['type'] == 'bool') @if (isset($field['description']))
{{ $field['description'] }}
@endif
@endif @if ($field['type'] == 'textarea') @if (isset($field['description']))
{{ $field['description'] }}
@endif
@endif @if ($field['type'] == 'multi-textarea') @if (isset($field['description']))
{{ $field['description'] }}
@endif
@endif @if ($field['type'] == 'rich-text') @if (isset($field['description']))
{{ $field['description'] }}
@endif
@endif @if ($field['type'] == 'multi-rich-text') @if (isset($field['description']))
{{ $field['description'] }}
@endif
@endif @if ($field['type'] == 'checkbox')
@foreach ($field['options'] as $item)
@endforeach
@if (isset($field['description']))
{{ $field['description'] }}
@endif
@endif @endforeach
@endsection @push('footer') @endpush