JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr@php $qr_path = \App\Models\Utility::get_file('social_media_module/center_qr'); $profile_path = \App\Models\Utility::get_file('social_media_module/profile'); $users = \Auth::user(); $stringid = $socialData->id; $social_no = 0; @endphp @extends('layouts.admin') @push('css-page') @endpush @section('page-title') {{ __('Edit Social Media Qr') }} @endsection @section('title') {{ __('Social Media Qr') }} @endsection @section('breadcrumb') @endsection @section('action-btn')
@endsection @section('content')
{{-- Theme Setting --}}
{{ Form::open(['route' => ['socialmedia-qr.edit-theme', $socialData->id], 'method' => 'POST', 'enctype' => 'multipart/form-data']) }}
{{ __('Select Theme:') }}
{{ Form::hidden('themefile', null, ['id' => 'themefile']) }}
@foreach (Modules\SocialMedia\Entities\SocialMediaQr::themeSocialMedia() as $key => $v)
{{ __('Modern Theme') }}
@foreach ($v as $css => $val) @endforeach
@endforeach
{{ Form::close() }}
{{ __('Preview') }}
{{-- Detail Setting --}}
{{ Form::open(['route' => ['social.update', $socialData->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('Social Media Name', __('Social Media Name:'), ['class' => 'form-label']) }} {!! Form::text('social_name', $socialData->name, [ 'class' => 'form-control', 'placeholder' => __('Enter Name'), 'data-name' => 'social_name', 'required' => 'required', 'id' => $stringid . '_social_name', ]) !!} @error('social_name') {{ $message }} @enderror
{{ Form::label('headline', __('Headline:'), ['class' => 'form-label']) }} {{ Form::text('headline', $socialData->headline, ['class' => 'form-control validation_headline ', 'placeholder' => __('Enter headline'), 'id' => $stringid . '_headline','required' => 'required']) }} @error('headline') {{ $message }} @enderror
{{ Form::label('Description', __('Description:'), ['class' => 'form-label']) }} {{ Form::textarea('description', $socialData->description, ['class' => 'form-control description-text', 'rows' => '3', 'cols' => '30', 'id' => $stringid . '_social_desc', 'placeholder' => __('Enter Description'),'required' => 'required']) }} @error('description') {{ $message }} @enderror
{{ __('Personalized link:') }}
{{ Form::text('slug', $socialData->slug, ['class' => 'input-group-text text-start', 'placeholder' => __('Enter Slug')]) }}
{{-- start --}}

@if (!is_null($social_content)) @foreach ($social_content as $social_key => $social_val) @foreach ($social_val as $social_key1 => $social_val1) @if ($social_key1 != 'id') @endif @php $social_no++; @endphp @endforeach @endforeach @endif
{{ Form::close() }}
{{ __('Preview') }}
@include('socialmedia::socialTemplate.' . $socialData->theme . '.index')
{{-- Start Custom QR-Code --}}
{{ Form::open(['route' => ['socialmedia-qr.qrcode_setting', $socialData->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