@extends('backend.layout') @section('content')
@csrf
{{ __('Send Notification') }}
@if ($errors->has('title'))

{{ $errors->first('title') }}

@endif
@if ($errors->has('button_name'))

{{ $errors->first('button_name') }}

@endif
@if ($errors->has('button_url'))

{{ $errors->first('button_url') }}

@endif

{{ __('Only those people will receive this notification, who has allowed it') }}
{{ __("Push notification won't work for 'http' protocol, it needs 'https' protocol") }}

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

@endsection