@php $default_lang_code = language_const()::NOT_REMOVABLE; @endphp @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' => __("Setup Section")]) @endsection @section('content')
{{ __($page_title) }}
@csrf
@include('admin.components.form.input-file',[ 'label' => __( "Site Image:*"), 'name' => "site_image", 'class' => "file-holder", 'old_files_path' => files_asset_path("site-section"), 'old_files' => $data->value->images->site_image ?? "", ])
@include('admin.components.form.input-file',[ 'label' =>__( "Google Play Image:")."*", 'name' => "google_play", 'class' => "file-holder", 'old_files_path' => files_asset_path("site-section"), 'old_files' => $data->value->images->google_play ?? "", ])
@include('admin.components.form.input-file',[ 'label' => __( "Apple Store Image:")."*", 'name' => "appple_store", 'class' => "file-holder", 'old_files_path' => files_asset_path("site-section"), 'old_files' => $data->value->images->appple_store ?? "", ])
@include('admin.components.button.form-btn',[ 'class' => "w-100 btn-loading", 'text' => __("Submit"), 'permission' => "admin.setup.sections.section.update" ])
@endsection @push('script') @endpush