@extends('admin.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.') }}

@endsection