@extends('admin.layouts.master') @push('css') @endpush @section('page-title') @include('admin.components.page-title',['title' => __($page_title)]) @endsection @section('breadcrumb') @include('admin.components.breadcrumb',['breadcrumbs' => [ [ 'name' => __("Dashboard"), 'url' => setRoute("admin.dashboard"), ] ], 'active' => __("App Settings")]) @endsection @section('content')
{{ __("Splash Screen") }}
@csrf @method("PUT")
@include('admin.components.form.input-file',[ 'label' => __("Image (User)").': (414*896)', 'class' => "file-holder", 'name' => "image", 'old_files_path' => files_asset_path('splash-images'), 'old_files' => $app_settings->splash_screen_image, ])
@include('admin.components.form.input',[ 'label' => __("App Version* (User)"), 'name' => "version", 'attribute' => "data-limit=15", 'value' => old('version',$app_settings->version), 'placeholder' => __( "Write Here.."), ])
@include('admin.components.form.input-file',[ 'label' => __("Image (Agent):").' (414*896)', 'class' => "file-holder", 'name' => "agent_image", 'old_files_path' => files_asset_path('splash-images'), 'old_files' => $app_settings->agent_splash_screen_image, ])
@include('admin.components.form.input',[ 'label' => __("App Version* (Agent)"), 'name' => "agent_version", 'attribute' => "data-limit=15", 'value' => old('agent_version',$app_settings->agent_version), 'placeholder' => __( "Write Here.."), ])
@include('admin.components.form.input-file',[ 'label' => __("Image (Merchant)").': (414*896)', 'class' => "file-holder", 'name' => "merchant_image", 'old_files_path' => files_asset_path('splash-images'), 'old_files' => $app_settings->merchant_splash_screen_image, ])
@include('admin.components.form.input',[ 'label' => __("App Version* (Merchant)"), 'name' => "merchant_version", 'attribute' => "data-limit=15", 'value' => old('merchant_version',$app_settings->merchant_version), 'placeholder' => __( "Write Here.."), ])
@endsection @push('script') @endpush