@extends('layout/template')
@section('content')
This is just for functional testing, need to be redesign.
Watermark for {{ $current_tenant->name }}
If you set/change/delete the Watermark it will effect your space and traffic in the following ways:
- Your Space will increase by the size of the Watermark
- All cached Images need to be regenerate that will increase your traffic (one time)
- If you add new Images the Watermark need to be downloaded, that will increase your traffic (each time)
Update Watermark
@if (!is_null($current_tenant->watermark))
Delete Watermark
Delete Watermark
@endif
Current Watermark:
@if (!is_null($current_tenant->watermark))
@endif
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@endsection