@extends('settings.default') @push('css_lib') {{--dropzone--}} @endpush @section('settings_title', 'Push Notification') @section('settings_content') @include('flash::message')
{!! Form::open(['url' => ['settings/update'], 'method' => 'patch']) !!}
{!! Form::label('enable_notifications','Enable push notifications',['class' => 'col-2 control-label text-right']) !!}
{!! Form::label('fcm_key', 'Firebase Cloud Messaging Key', ['class' => 'col-2 control-label text-right']) !!}
{!! Form::text('fcm_key', setting('fcm_key'), ['class' => 'form-control',]) !!}
Insert Firebase Cloud Messaging Key ( https://console.firebase.google.com/ )
Cancel
{!! Form::close() !!}
@endsection