@extends('master') @section('styles') @endsection @section('content')

{{ __('uum.managealerts') }}


@csrf
@if($errors->has('notification_email'))

{{ $errors->first('notification_email') }}

@endif
@if($errors->has('slack_webhook'))

{{ $errors->first('slack_webhook') }}

@endif
@if($errors->has('webhook_url'))

{{ $errors->first('webhook_url') }}

@endif
@if($errors->has('pushbullet_token'))

{{ $errors->first('pushbullet_token') }}

@endif
@if($errors->has('nexmo_from_number'))

{{ $errors->first('nexmo_from_number') }}

@endif
✓ {{ __('uum.mobileisvalid') }} {{ __('uum.mobileisinvalid') }} @if($errors->has('mobile_number'))

{{ $errors->first('mobile_number') }}

@endif
@foreach(['slack', 'email', 'sms', 'webhook', 'pushbullet'] as $channel)
{{ __('uum.notifyvia', ['channel' => strtoupper($channel)]) }}
@endforeach
@endsection @section('myscript') @endsection