@extends('layouts.main') @section('title') {{ __('Notification Settings') }} @endsection @section('page-title')

{{ __('Notification Settings') }}

@endsection @section('content')
{{ csrf_field() }}
{{-- Project ID --}} @if(empty($firebaseProjectId))
{{ Form::label('project-id', __('Project ID') , ['class' => 'form-label']) }} {!! Form::text('firebase_project_id', ($firebaseProjectId != '' ? $firebaseProjectId : ''), ['class' => 'form-control', 'placeholder' => __('Project ID'), 'id' => 'project-id', 'data-parsley-required' => 'true']) !!}
@else
{{ Form::label('project-id', __('Project ID') , ['class' => 'form-label']) }} {!! Form::text('firebase_project_id', ($firebaseProjectId != '' ? $firebaseProjectId : ''), ['class' => 'form-control', 'placeholder' => __('Project ID'), 'id' => 'project-id']) !!}
@endif {{-- Firebase Service JSON File --}} @if(empty($firebaseServiceJsonFile))
{{ Form::label('service-json-file', __('Service JSON File'), ['class' => 'form-label']) }} {{ Form::file('firebase_service_json_file', ['class' => 'form-control', 'data-parsley-required' => 'true', 'accept' => '.json', 'required' => true]) }}
@else
{{ Form::label('service-json-file', __('Service JSON File'), ['class' => 'form-label']) }} {{ Form::file('firebase_service_json_file', ['class' => 'form-control', 'accept' => '.json']) }}
{{__('File Exists')}}
@endif
@endsection