芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/kwesioben.com/paymoney/resources/views/admin/settings/general.blade.php
@php $extensions = json_encode(getFileExtensions(3)); @endphp @extends('admin.layouts.master') @section('title', __('General Settings')) @section('head_style')
@endsection @section('page_content')
@include('admin.common.settings_bar')
{{ __('General Settings Form') }}
@csrf
{{-- Name --}}
{{ __('Name') }}
{{ $errors->first('name') }}
{{ __('Logo') }}
{{ $errors->first('photos[logo]') }}
{{ allowedImageDimension(288,90) }}
@if (isset($result['logo']))
@endif
{{ __('Favicon') }}
{{ $errors->first('photos[favicon]') }}
{{ allowedImageDimension(40,40) }}
@if (isset($result['favicon']))
@endif
{{ __('Google Analytics Tracking Code') }}
{{ $result['head_code'] }}</textarea>
{{ $errors->first('head_code') }}
{{ __('Google reCaptcha') }}
{{ __('Login') }}
{{ __('Registration') }}
{{ __('Login And Registration') }}
{{ __('Disabled') }}
{{ __('Login Via') }}
{{ __('Email Only') }}
{{ __('Phone Only') }}
{{ __('Email or Phone') }}
{{ __('Default Currency') }}
@foreach ($currency as $key => $value)
{{ $value }}
@endforeach
{{ __('Allowed Wallets') }}
@foreach($allowedWallets as $key => $value)
{{ $value }}
@endforeach
*{{ __('This currency wallets will be generated during registration besides default one') }}
{{ __('Default Language') }}
@foreach ($language as $key => $value)
{{ $value }}
@endforeach
@if(Common::has_permission(auth('admin')->user()->id, 'edit_general_setting')) @endif
@endsection @push('extra_body_scripts') @include('common.read-file-on-change') @endpush