JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr@php $qr_path = \App\Models\Utility::get_file('google_form_module/center_qr'); $users = \Auth::user(); $stringid = $formData->id; @endphp @extends('layouts.admin') @push('css-page') @endpush @section('page-title') {{ __('Edit Google Form') }} @endsection @section('title') {{ __('Google Form') }} @endsection @section('breadcrumb') @endsection @section('action-btn')
@endsection @section('content')
{{-- Theme Setting --}}
{{ Form::open(['route' => ['googleform-qr.edit-theme', $formData->id], 'method' => 'POST', 'enctype' => 'multipart/form-data']) }}
{{ __('Select Theme:') }}
{{ Form::hidden('themefile', null, ['id' => 'themefile']) }}
@foreach (Modules\GoogleForm\Entities\GoogleFormQr::themeGoogleForm() as $key => $v)
{{ __('Modern Theme') }}
@foreach ($v as $css => $val) @endforeach
@endforeach
{{ Form::close() }}
{{ __('Preview') }}
{{-- Detail Setting --}}
{{ Form::open(['route' => ['googleform.update', $formData->id], 'method' => 'PUT', 'enctype' => 'multipart/form-data','class' => 'needs-validation', 'novalidate']) }}
{{ __('Basic Information:') }}
{{ Form::label('Google Form Name', __('Google Form Name:'), ['class' => 'form-label']) }} {!! Form::text('form_name', $formData->name, [ 'class' => 'form-control', 'placeholder' => __('Enter Name'), 'data-name' => 'form_name', 'required' => 'required', 'id' => $stringid . '_form_name', ]) !!} @error('form_name') {{ $message }} @enderror
{{ Form::label('Google Form Link', __('Google Form Link:'), ['class' => 'form-label']) }} {!! Form::text('form_link', $formData->form_link, [ 'class' => 'form-control form_link', 'placeholder' => __('Enter Form Link'), 'data-name' => 'form_link', 'required' => 'required', 'id' => $stringid . '_form_link', ]) !!} @error('form_link') {{ $message }} @enderror
{{ __('Personalized link:') }}
{{ Form::text('slug', $formData->slug, ['class' => 'input-group-text text-start', 'placeholder' => __('Enter Slug')]) }}
{{ Form::close() }}
{{ __('Preview') }}
@include('googleform::googleformTemplate.' . $formData->theme . '.index')
{{-- Start Custom QR-Code --}}
{{ Form::open(['route' => ['googleform-qr.qrcode_setting', $formData->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']) }}
{{ Form::close() }}
{{-- End Custom QR-Code --}}
@endsection @push('custom-scripts') @endpush