@extends('layouts.app') @section('title', 'Settings | Mobile') @section('extrastyles') @endsection @section('content')
Mobile Settings
{!! Form::open(['novalidate' => 'novalidate','onsubmit' => 'return updateMobileSettings(this);']) !!}
{!! Form::label('_mobile_support_emails','Support Email Address') !!} {!! Form::text('setting[_mobile_support_emails]' , SiteSettingFind('_mobile_support_emails', '') , ['class' => 'form-control','rows' => 5,'placeholder' => 'Support Email Address','required'=>'true']) !!} Note: Separate multiple email addresses using commas

Shop App


{!! Form::label('_mobile_shop_app_name', 'App Name') !!} {!! Form::text('setting[_mobile_shop_app_name]' , SiteSettingFind('_mobile_shop_app_name', '') , ['class' => 'form-control', 'placeholder' => 'App Name','id'=> 'shop_app_name']) !!}
{!! Form::label('_mobile_shop_app_slug', 'Slug') !!} {!! Form::text('setting[_mobile_shop_app_slug]' , SiteSettingFind('_mobile_shop_app_slug', '') , ['class' => 'form-control', 'placeholder' => 'Url slug']) !!}
{!! Form::label('_mobile_shop_app_ios_url', 'IOS URL') !!} {!! Form::text('setting[_mobile_shop_app_ios_url]' , SiteSettingFind('_mobile_shop_app_ios_url', '') , ['class' => 'form-control', 'placeholder' => 'IOS URL','id'=> 'shop_ios_url']) !!}
{!! Form::label('_mobile_shop_app_android_url', 'Android URL') !!} {!! Form::text('setting[_mobile_shop_app_android_url]' , SiteSettingFind('_mobile_shop_app_android_url', '') , ['class' => 'form-control', 'placeholder' => 'Android URL','id'=> 'shop_android_url']) !!}
{!! Form::label('_mobile_fg_app_slug', 'Version') !!} {!! Form::text('setting[_mobile_shop_app_version]' , SiteSettingFind('_mobile_shop_app_version', '') , ['class' => 'form-control', 'placeholder' => '1.0.0']) !!}
{!! Form::label('_mobile_shop_app_logo_url', 'App Logo URL') !!} {!! Form::text('setting[_mobile_shop_app_logo_url]' , SiteSettingFind('_mobile_shop_app_logo_url', '') , ['class' => 'form-control', 'placeholder' => 'App Logo URL','id'=> 'app_logo_url']) !!}
{!! Form::label('_mobile_shop_app_server_key', 'Firebase Server Key') !!} {!! Form::text('setting[_mobile_shop_app_server_key]' , SiteSettingFind('_mobile_shop_app_server_key', '') , ['class' => 'form-control', 'placeholder' => 'Firebase Server Key','id'=> 'app_server_key']) !!}
{{ Form::checkbox('setting[_mobile_shop_app_show_mobile_banner]',null , SiteSettingFind('_mobile_shop_app_show_mobile_banner', 0) ,['id'=> 'show_mobile_banner']) }} {!! Form::label('_mobile_shop_app_show_mobile_banner','Show Mobile Banner') !!}
{{ Form::checkbox('setting[_mobile_shop_category_names]',null , SiteSettingFind('_mobile_shop_category_names', 0) ,['id'=> '_mobile_shop_category_names']) }} {!! Form::label('_mobile_shop_category_names','Show Category Titles on Shop screen') !!}


@if(isFastGrowthPlugin())

FastGrowth


{!! Form::label('_mobile_fg_app_name', 'App Name') !!} {!! Form::text('setting[_mobile_fg_app_name]' , SiteSettingFind('_mobile_fg_app_name', '') , ['class' => 'form-control', 'placeholder' => 'App Name','id'=> 'fg_app_name']) !!}
{!! Form::label('_mobile_fg_app_slug', 'Slug') !!} {!! Form::text('setting[_mobile_fg_app_slug]' , SiteSettingFind('_mobile_fg_app_slug', '') , ['class' => 'form-control', 'placeholder' => 'Url slug']) !!}
{!! Form::label('_mobile_fg_app_ios_url', 'IOS URL') !!} {!! Form::text('setting[_mobile_fg_app_ios_url]' , SiteSettingFind('_mobile_fg_app_ios_url', '') , ['class' => 'form-control', 'placeholder' => 'IOS URL','id'=> 'fg_ios_url']) !!}
{!! Form::label('_mobile_fg_app_android_url', 'Android URL') !!} {!! Form::text('setting[_mobile_fg_app_android_url]' , SiteSettingFind('_mobile_fg_app_android_url', '') , ['class' => 'form-control', 'placeholder' => 'Android URL','id'=> 'fg_android_url']) !!}
@endif
{!! Form::close() !!}
@endsection @section('footer') @endsection