JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr@php $qr_path = \App\Models\Utility::get_file('facebook_module/center_qr'); $profile_path = \App\Models\Utility::get_file('facebook_module/profile'); $users = \Auth::user(); $weblink_no = 0; $stringid = $facebookData->id; @endphp @extends('layouts.admin') @push('css-page') @endpush @section('page-title') {{ __('Edit Facebook') }} @endsection @section('title') {{ __('Facebook') }} @endsection @section('breadcrumb') @endsection @section('action-btn')
@endsection @section('content')
{{-- Theme Setting --}}
{{ Form::open(['route' => ['facebook.edit-theme', $facebookData->id], 'method' => 'POST', 'enctype' => 'multipart/form-data']) }}
{{ __('Select Theme:') }}
{{ Form::hidden('themefile', null, ['id' => 'themefile']) }}
@foreach (Modules\Facebook\Entities\FacebookQR::themeFacebook() as $key => $v)
{{ __('Modern Theme') }}
@foreach ($v as $css => $val) @endforeach
@endforeach
{{ Form::close() }}
{{ __('Preview') }}
{{-- Detail Setting --}}
{{ Form::open(['route' => ['facebook.update', $facebookData->id], 'method' => 'PUT', 'enctype' => 'multipart/form-data','class' => 'needs-validation', 'novalidate']) }}
{{ __('Basic Information:') }}
{{ Form::label('Name', __('Profile Images:'), ['class' => 'form-label']) }}
{{ Form::label('Name', __('Name:'), ['class' => 'form-label']) }} {!! Form::text('name', $facebookData->name, [ 'class' => 'form-control emojiarea', 'placeholder' => __('Enter Name'), 'data-name' => 'fcaebook_name', 'required' => 'required', 'id' => $stringid . '_facebook_name', ]) !!} @error('name') {{ $message }} @enderror
{{ Form::label('headline', __('Headline:'), ['class' => 'form-label']) }} {{ Form::text('headline', isset($facebookContent->headline) ? $facebookContent->headline : null, ['class' => 'form-control validation_headline ', 'placeholder' => __('Enter Sub Title'), 'id' => $stringid . '_headline','required'=>'required']) }} @error('headline') {{ $message }} @enderror
{{ Form::label('sub_headline', __('Sub Headline:'), ['class' => 'form-label']) }} {{ Form::text('sub_headline', isset($facebookContent->sub_headline) ? $facebookContent->sub_headline : null, ['class' => 'form-control validation_subtitle ', 'placeholder' => __('Enter Sub Title'), 'id' => $stringid . '_subheadline','required'=>'required']) }} @error('sub_headline') {{ $message }} @enderror
{{ Form::label('facebook_url', __('Facebook URL'), ['class' => 'form-label']) }}
{{ __('Personalized link:') }}
{{ Form::text('slug', $facebookData->slug, ['class' => 'input-group-text text-start', 'placeholder' => __('Enter Slug')]) }}

{{ Form::close() }}
{{ __('Preview') }}
@include('facebook::fbtemplate.' . $facebookData->theme . '.index')
{{-- Start Custom QR-Code --}}
{{ Form::open(['route' => ['facebook.qrcode_setting', $facebookData->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