@extends('layouts.app') @section('title') App-Configuration @endsection @section('content')
@include('flash::message') @if ($errors->any())
{{ $errors->first() }}
@endif {{ Form::model($appConfigs,['route' => 'app.configuration.update', 'method' => 'post','id' => 'appConfigurationForm','files' => true]) }} @csrf
{{ Form::text('app_name', $appConfigs['app_name'], ['class' => 'form-control','placeholder'=>__('App Name'),'required']) }}
{{ Form::text('base_url', $appConfigs['base_url'], ['class' => 'form-control','placeholder'=>__('App Name'),'required']) }}
{{--
--}} {{-- --}} {{-- {{ Form::select('app_language', $appLanguages, $appConfigs['app_language'], [--}} {{-- 'class' => 'form-select', 'aria-label'=>"Select a Currency",--}} {{-- 'data-control'=>'select2']) }}--}} {{--
--}}
{{ Form::select('navigation_style', $navigationStyles, $appConfigs['navigation_style'], [ 'class' => 'form-select', 'id' => 'navStyle', 'aria-label'=>"Select a Currency", 'data-control'=>'select2']) }}
{{ Form::select('header_style', $headerStyles, $appConfigs['header_style'], [ 'class' => 'form-select', 'aria-label'=>"Select a Currency", 'data-control'=>'select2']) }}

Bottom Navigation style

#
#
#

Tab style

#
#
#
Disable Header
Disable Footer
Javascript Enable?
Required Splash Screen?
Is Support Zoom Functionality?
Required WalkThrough?
{{--
--}} {{--
Is Support WebRTC Functionality?
--}} {{--
--}} {{--
--}} {{-- --}} {{-- --}} {{--
--}} {{--
--}} {{-- --}} {{-- --}} {{--
--}} {{--
--}} {{--
--}}
Is Enable Pull to Refresh?
Clear Cookies?
Required Exit Popup Screen?
walkthrough_style_1.png
walkthrough_style_2.png
walkthrough_style_3.png
{{--
--}} {{--
Required Floating Action Button?
--}} {{--
--}} {{--
--}} {{-- --}} {{-- --}} {{--
--}} {{--
--}} {{-- --}} {{-- --}} {{--
--}} {{--
--}} {{--
--}} {{-- --}} {{--
--}} {{-- --}} {{--
--}} {{--
--}} {{--
--}} {{-- --}} {{-- --}} {{--
--}} {{--
--}} {{-- #--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{-- --}} {{-- --}} {{--
--}} {{--
--}} {{-- #--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}}
{{ Form::close() }}
@endsection