JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr@php $qr_path = \App\Models\Utility::get_file('app_download_module/center_qr'); $profile_path = \App\Models\Utility::get_file('app_download_module/profile'); $users = \Auth::user(); use App\Models\Utility; $stringid = $appData->id; @endphp @extends('layouts.admin') @push('css-page') @endpush @section('page-title') {{ __('Edit App Download') }} @endsection @section('title') {{ __('App Download') }} @endsection @section('breadcrumb') @endsection @section('action-btn')
@endsection @section('content')
{{-- Theme Setting --}}
{{ Form::open(['route' => ['app-download-qr.edit-theme', $appData->id], 'method' => 'POST', 'enctype' => 'multipart/form-data']) }}
{{ __('Select Theme:') }}
{{ Form::hidden('themefile', null, ['id' => 'themefile']) }}
@foreach (Modules\AppDownload\Entities\AppDownloadQr::themeAppDownload() as $key => $v)
{{ __('Modern Theme') }}
@foreach ($v as $css => $val) @endforeach
@endforeach
{{ Form::close() }}
{{ __('Preview') }}
{{-- Detail Setting --}}
{{ Form::open(['route' => ['apps.update', $appData->id], 'method' => 'PUT', 'enctype' => 'multipart/form-data', 'id' => 'uploadForm','class' => 'needs-validation', 'novalidate']) }}
{{ __('Basic Information:') }}
{{ Form::label('Name', __('Profile Images:'), ['class' => 'form-label']) }}
{{ Form::label('App Name', __('App Name:'), ['class' => 'form-label']) }} {!! Form::text('app_name', $appData->name, [ 'class' => 'form-control', 'placeholder' => __('Enter Name'), 'data-name' => 'app_name', 'required' => 'required', 'id' => $stringid . '_app_name', ]) !!} @error('app_name') {{ $message }} @enderror
{{ Form::label('Developer Name', __('Developer Name:'), ['class' => 'form-label']) }} {!! Form::text('developer_name', $appData->developer_name, [ 'class' => 'form-control', 'placeholder' => __('Enter Developer Name'), 'data-name' => 'developer_name', 'required' => 'required', 'id' => $stringid . '_developer_name', ]) !!} @error('developer_name') {{ $message }} @enderror
{{ Form::label('headline', __('Headline:'), ['class' => 'form-label']) }} {{ Form::text('headline', $appData->headline, ['class' => 'form-control validation_headline ', 'placeholder' => __('Enter Sub Title'), 'id' => $stringid . '_headline','required'=>'required']) }} @error('headline') {{ $message }} @enderror
{{ Form::label('website', __('Website:'), ['class' => 'form-label']) }} {{ Form::text('website', isset($appData->website) ? $appData->website : null, ['class' => 'form-control validation_headline ', 'placeholder' => __('Enter Website link'), 'id' => $stringid . '_website_link', 'required' => 'required']) }} @error('website') {{ $message }} @enderror
{{ Form::label('Read More Link', __('Read More Link:'), ['class' => 'form-label']) }} {{ Form::text('read_more_link', isset($appData->read_more_link) ? $appData->read_more_link : null, ['class' => 'form-control validation_headline ', 'placeholder' => __('Enter Url For Read More'), 'id' => $stringid . '_read_more_link', 'required' => 'required']) }} @error('read_more_link') {{ $message }} @enderror
{{ Form::label('Description', __('Description:'), ['class' => 'form-label']) }} {{ Form::textarea('description', $appData->description, ['class' => 'form-control description-text', 'rows' => '3', 'cols' => '30', 'id' => $stringid . '_apps_desc', 'placeholder' => __('Enter Description'),'required'=>'required']) }} @error('description') {{ $message }} @enderror
{{ __('Personalized link:') }}
{{ Form::text('slug', $appData->slug, ['class' => 'input-group-text text-start', 'placeholder' => __('Enter Slug')]) }}

@error('playstore_id') {{ $message }} @enderror
@error('appstore_id') {{ $message }} @enderror
{{ __('Note : If you do not select any variant then by default 1 variant will be selected.') }}
{{ Form::close() }}
{{ __('Preview') }}
@include('appdownload::appsTemplate.' . $appData->theme . '.index')
{{-- Start Custom QR-Code --}}
{{ Form::open(['route' => ['app-download-qr.qrcode_setting', $appData->id], 'method' => 'POST', 'enctype' => 'multipart/form-data','class' => 'needs-validation', 'novalidate']) }}
{{ __('Qr Code Settings:') }}
{{ Form::label('Foreground Color', __('Foreground Color'), ['class' => 'form-label']) }}
{{ Form::label('Background Color', __('Background Color'), ['class' => 'form-label']) }}
{{ Form::label('Corner Radius', __('Corner Radius'), ['class' => 'form-label']) }}
{{ Form::label('Text', __('Text'), ['class' => 'form-label']) }}
{{ Form::label('Text Color', __('Text Color'), ['class' => 'form-label']) }}
{{ Form::label('image', __('Image'), ['class' => 'form-label']) }}
{{ Form::label('Size', __('Size'), ['class' => 'form-label']) }}
{{__('Text exceeds maximum length. QR code may be unreadable.')}}
{{ Form::close() }}
{{-- End Custom QR-Code --}}
@endsection @push('custom-scripts') @endpush