芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/kwesioben.com/paymoney/resources/views/admin/settings/preference.blade.php
@extends('admin.layouts.master') @section('title', __('Preferences')) @section('head_style') @endsection @section('page_content')
{{-- settings_bar --}} @include('admin.common.settings_bar')
{{ __('Manage Preferences') }}
{!! csrf_field() !!}
{{ __('TimeZone') }}
@foreach($timezones as $timezone)
{{ $timezone['diff_from_GMT'] . ' - ' . $timezone['zone'] }}
@endforeach
{{ __('Send') }} {{ __('Request') }} {{ __('via') }}
{{ __('Email') }}
{{ __('Phone') }}
{{ __('Email or Phone') }}
{{ __('Email Verification') }}
{{ __('Enabled') }}
{{ __('Disabled') }}
{{ __('Phone Verification') }}
{{ __('Enabled') }}
{{ __('Disabled') }}
{{ __('2-Factor Authentication') }}
{{ __('Disabled') }}
{{ __('By email') }}
{{ __('By google authenticator') }}
{{ __('By phone') }}
{{ __('By email Or phone') }}
{{ __('Row Per Page') }}
10
25
50
100
{{ __('Date Separator') }}
-
/
.
{{ __('Date Format') }}
yyyymmdd {2019 12 31}
ddmmyyyy {31 12 2019}
mmddyyyy {12 31 2019}
ddMyyyy {31 Dec 2019}
yyyyMdd {2019 Dec 31}
{{ __('Decimal Format') }} (.)
@for($i = 1; $i<=8; $i++)
{{$i}}
@endfor
{{ __('Decimal Format') }} (.) {{ __('Crypto') }}
@for($i = 1; $i<=8; $i++)
{{$i}}
@endfor
{{-- Filesize --}}
{{ __('Max Filesize') }}
{{ $errors->first('file_size') }}
{{ __('Maximum uploaded file size upto :x MB', ['x' => __('20')]) }}
{{ __('Money Symbol Position') }}
{{ __('Before') }} { $500 }
{{ __('After') }} { 500$ }
{{ __('Thousand Separator') }}
,({{ __('comma') }})
.({{ __('dot') }})
{{ __('Followed By') }}
{{ isset($prefData['preference']['thousand_separator']) && $prefData['preference']['thousand_separator'] == '.' ? ',' : "" }} {{ isset($prefData['preference']['thousand_separator']) && $prefData['preference']['thousand_separator'] == ',' ? '.' : "" }}
({{ __('decimal') }})
@if(Common::has_permission(auth('admin')->user()->id, 'edit_preference'))
{{ __('Submit') }}
@endif
@endsection @push('extra_body_scripts') @endpush