@php $page_entries = [25 => 25, 50 => 50, 100 => 100, 200 => 200, 500 => 500, 1000 => 1000, -1 => __('lang.all')]; @endphp {!! Form::label('default_datatable_page_entries', __('lang.default_datatable_page_entries')) !!} {!! Form::select('common_settings[default_datatable_page_entries]', $page_entries, !empty($common_settings['default_datatable_page_entries']) ? $common_settings['default_datatable_page_entries'] : 25 , ['class' => 'form-control select2', 'style' => 'width: 100%;', 'id' => 'default_datatable_page_entries']) !!}
{!! Form::label('theme_color', __('lang.theme_color')) !!} {!! Form::select('theme_color', $theme_colors, $business->theme_color, ['class' => 'form-control select2', 'placeholder' => __('messages.please_select'), 'style' => 'width: 100%;']) !!}
{!! Form::label('header_background_color', __('lang.header_background_color')) !!} {!! Form::color('header_background_color', 1, auth()->user()->header_background_color , [ 'class' => 'form-control']) !!}
{!! Form::label('header_text_color', __('lang.header_text_color')) !!} {!! Form::color('header_text_color', 1, auth()->user()->header_text_color , [ 'class' => 'form-control']) !!}
{!! Form::label('menu_background_color', __('lang.menu_background_color')) !!} {!! Form::color('menu_background_color', 1, auth()->user()->menu_background_color , [ 'class' => 'form-control']) !!}
{!! Form::label('menu_text_color', __('lang.menu_text_color')) !!} {!! Form::color('menu_text_color', 1, auth()->user()->menu_text_color , [ 'class' => 'form-control']) !!}