{!! Form::label('pusher_app_id','Pusher App Id',[]) !!}
{!! Form::input('text','pusher_app_id',(config('config.pusher_app_id')) ? config('config.hidden_value') : '',['class'=>'form-control','placeholder'=> 'Pusher App Id']) !!}
{!! Form::label('pusher_key','Pusher Key',[]) !!}
{!! Form::input('text','pusher_key',(config('config.pusher_key')) ? config('config.hidden_value') : '',['class'=>'form-control','placeholder'=> 'Pusher Key']) !!}
{!! Form::label('pusher_secret','Pusher Secret',[]) !!}
{!! Form::input('text','pusher_secret',(config('config.pusher_secret')) ? config('config.hidden_value') : '',['class'=>'form-control','placeholder'=> 'Pusher Secret']) !!}
{!! Form::label('pusher_cluster','Pusher Cluser',[]) !!}
{!! Form::input('text','pusher_cluster',(config('config.pusher_cluster')) ? config('config.hidden_value') : '',['class'=>'form-control','placeholder'=> 'Pusher Cluser']) !!}
{!! Form::label('push_notification_modules',trans('messages.module'),[]) !!}
{!! Form::select('push_notification_modules[]',$push_notification_modules,(config('config.push_notification_modules')) ? explode(',',config('config.push_notification_modules')) : [],['class'=>'form-control show-tick','title'=>trans('messages.select_one'),'multiple'=>'multiple','data-actions-box'=>"true"]) !!}
{!! Form::label('default_notification_tone',trans('messages.default').' '.trans('messages.notification').' '.trans('messages.tone'),[]) !!}
{!! Form::select('default_notification_tone',getAllNotificationMusicList(),(config('config.default_notification_tone')) ? : '',['class'=>'form-control show-tick','title'=>trans('messages.select_one')]) !!}
@foreach(File::allFiles('notification-music') as $file)
{{getNotificationMusicName($file)}}
@endforeach