JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr@php $qr_path = \App\Models\Utility::get_file('google_map_module/center_qr'); $users = \Auth::user(); $stringid = $mapData->id; @endphp @extends('layouts.admin') @push('css-page') @endpush @section('page-title') {{ __('Edit Google Map URL') }} @endsection @section('title') {{ __('Google Map URL') }} @endsection @section('breadcrumb') @endsection @section('action-btn')
@endsection @section('content')
{{-- Theme Setting --}}
{{ Form::open(['route' => ['googlemap-qr.edit-theme', $mapData->id], 'method' => 'POST', 'enctype' => 'multipart/form-data']) }}
{{ __('Select Theme:') }}
{{ Form::hidden('themefile', null, ['id' => 'themefile']) }}
@foreach (Modules\GoogleMapURL\Entities\GoogleMapQr::themeGoogleMap() as $key => $v)
{{ __('Modern Theme') }}
@foreach ($v as $css => $val) @endforeach
@endforeach
{{ Form::close() }}
{{ __('Preview') }}
{{-- Detail Setting --}}
{{ Form::open(['route' => ['googlemap.update', $mapData->id], 'method' => 'PUT', 'enctype' => 'multipart/form-data','class' => 'needs-validation', 'novalidate']) }}
{{ __('Basic Information:') }}
{{ Form::label('Google Map Name', __('Google Map Name:'), ['class' => 'form-label']) }} {!! Form::text('map_name', $mapData->name, [ 'class' => 'form-control', 'placeholder' => __('Enter Name'), 'data-name' => 'map_name', 'required' => 'required', 'id' => $stringid . '_map_name', ]) !!} @error('map_name') {{ $message }} @enderror
{{ Form::label('Google Map URL', __('Google Map URL:'), ['class' => 'form-label']) }} {!! Form::text('map_link', $mapData->map_url, [ 'class' => 'form-control map_link', 'placeholder' => __('Enter Map URL'), 'data-name' => 'map_link', 'required' => 'required', 'id' => $stringid . '_map_link', ]) !!} @error('map_link') {{ $message }} @enderror {{__('Note : Please make sure to include the correct iframe code.')}}
{{ __('Personalized link:') }}
{{ Form::text('slug', $mapData->slug, ['class' => 'input-group-text text-start', 'placeholder' => __('Enter Slug')]) }}
{{ Form::close() }}
{{ __('Preview') }}
@include('googlemapurl::googlemapTemplate.' . $mapData->theme . '.index')
{{-- Start Custom QR-Code --}}
{{ Form::open(['route' => ['googlemap-qr.qrcode_setting', $mapData->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