{{ html()->form('POST', route('themesetup'))->attribute('enctype', 'multipart/form-data')->attribute('data-toggle', 'validator')->open()}} {{ html()->hidden('id', $themesetup->id ?? null )->attribute('placeholder', 'id')->class('form-control') }} {{ html()->hidden('page', $page)->attribute('placeholder', 'id')->class('form-control') }}
@if($themesetup && getMediaFileExit($themesetup, 'logo')) @endif
{{ html()->file('logo') ->class('custom-file-input custom-file-input-sm detail') ->id('logo') ->attribute('lang', 'en') ->attribute('accept', 'image/*') ->attribute('onchange', 'preview()') }} @if($themesetup && getMediaFileExit($themesetup, 'logo')) @else @endif
favicon @if($themesetup && getMediaFileExit($themesetup, 'favicon')) @endif
{{ html()->file('favicon') ->class('custom-file-input custom-file-input-sm detail') ->id('favicon') ->attribute('lang', 'en') ->attribute('accept', 'image/*') ->attribute('onchange', 'preview()') }} @if($themesetup && getMediaFileExit($themesetup, 'favicon')) @else @endif
@if($themesetup && getMediaFileExit($themesetup, 'footer_logo')) @endif
{{ html()->file('footer_logo') ->class('custom-file-input custom-file-input-sm detail') ->id('footer_logo') ->attribute('lang', 'en') ->attribute('accept', 'image/*') ->attribute('onchange', 'preview()') }} @if($themesetup && getMediaFileExit($themesetup, 'footer_logo')) @else @endif
loader @if($themesetup && getMediaFileExit($themesetup, 'loader')) @endif
{{ html()->file('loader') ->class('custom-file-input custom-file-input-sm detail') ->id('loader') ->attribute('lang', 'en') ->attribute('accept', 'image/*') ->attribute('onchange', 'preview()') }} @if($themesetup && getMediaFileExit($themesetup, 'loader')) @else @endif

{{ __('messages.color_settings') }}

{{ html()->submit(__('messages.save')) ->class('btn btn-md btn-primary float-md-end submit_section1') ->attribute('onclick', 'saveThemeColors(event)') }}
{{ html()->form()->close() }}