@extends('layouts.main') @section('title') {{ __('Watermark Settings') }} @endsection @section('page-title')

{{ __('Watermark Settings') }}

@endsection @section('content')
{!! Form::open(['route' => 'settings.watermark-settings-store', 'data-parsley-validate', 'class' => 'create-form', 'data-success-function'=> "formSuccessFunction", 'enctype' => 'multipart/form-data']) !!} {{ csrf_field() }}
{{ __('Watermark Configuration') }}
{{-- Enable/Disable Watermark --}}
{{ __('When enabled, watermarks will be applied to uploaded images') }}
{{-- Watermark Image Upload --}}
{{ __('Upload a custom watermark image (PNG, JPG, JPEG). If not uploaded, default logo will be used.') }} @if(!empty($watermarkSettings['watermark_image_url']))

{{ __('Current Watermark:') }}

Current Watermark
@else

{{ __('Using default logo: Company Logo') }}

@endif
{{-- Opacity --}}
0% 100%
{{-- Size --}}
1% 100%
{{-- Style --}}
{{-- Position --}}
{{-- Hidden input for position when style is 'tile' --}}
{{-- Rotation --}}
-360° 360°
{{-- Preview Section --}}
{{ __('Preview') }}
{{ __('Sample Image') }}

{{ __('This is a visual preview of how the watermark will appear') }}

{{-- @dd($watermarkSettings); --}} {!! Form::close() !!}
@endsection @section('script') @endsection