2020-08-30 22:06:01 +00:00
|
|
|
@extends('adminlte::page')
|
|
|
|
|
|
|
|
@section('title', 'Raspberry Network | Open Positions')
|
|
|
|
|
|
|
|
@section('content_header')
|
|
|
|
|
|
|
|
@if (Auth::user()->hasAnyRole('admin'))
|
|
|
|
<h4>Administration / Settings</h4>
|
|
|
|
@else
|
|
|
|
<h4>Application Access Denied</h4>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('js')
|
|
|
|
|
|
|
|
@if (session()->has('success'))
|
|
|
|
<script>
|
|
|
|
toastr.success("{{session('success')}}")
|
|
|
|
</script>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@if($errors->any())
|
|
|
|
@foreach ($errors->all() as $error)
|
|
|
|
<script>toastr.error('{{$error}}', 'Validation error!')</script>
|
|
|
|
@endforeach
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
<div class="col">
|
|
|
|
|
|
|
|
<div class="card">
|
|
|
|
|
|
|
|
<div class="card-header">
|
|
|
|
<h3>Notification Settings</h3>
|
|
|
|
<p>Change which notifications are sent here.</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card-body">
|
|
|
|
<form name="settings" id="settings" method="post" action="{{route('saveSettings')}}">
|
2020-08-31 17:03:20 +00:00
|
|
|
@foreach($options as $option)
|
2020-08-30 22:06:01 +00:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="{{$option->option_name}}">{{$option->friendly_name}}</label>
|
|
|
|
<input type="checkbox" name="{{$option->option_name}}" id="{{$option->option_name}}" class="form-control" checked>
|
|
|
|
</div>
|
|
|
|
@endforeach
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|