@extends('backend.layout.master-tailwind') @section('title', __('Push Notification Settings')) @section('content')

{{ __('Push Notification Settings') }}

{{ __('Mobile app push notification configuration') }}

{{-- Info notice --}}
{{ __('To activate push notifications for the mobile app you must upload your Firebase JSON credentials file.') }}
{{-- Firebase file status --}} @if($firebaseFileExists)
{{ __('Firebase JSON file is already uploaded.') }}
@else
{{ __('No Firebase JSON file uploaded yet. Please upload a new one.') }}
@endif {{-- Upload form --}}
@csrf @if($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@endsection @section('admin_styles') @endsection