@extends('admin.layout') @section('content')
{{ __('Update Settings') }}
@csrf

@if (!is_null($data->notification_image)) image @else ... @endif
{{ __('Choose Image') }}
@error('notification_image')

{{ $message }}

@enderror
@if (env('VAPID_PUBLIC_KEY') == null && env('VAPID_PRIVATE_KEY') == null)
@error('vapid_public_key')

{{ $message }}

@enderror
@error('vapid_private_key')

{{ $message }}

@enderror

{{ __('Click Here') }} {{ __('to generate the VAPID Public Key & the VAPID Private Key') . '.' }}

@endif
@endsection