99 lines
5.5 KiB
PHP
99 lines
5.5 KiB
PHP
{{--
|
|
Copyright (c) 2015 - 2016 Dane Everitt <dane@daneeveritt.com>
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|
|
--}}
|
|
@extends('layouts.admin')
|
|
|
|
@section('title')
|
|
Administration
|
|
@endsection
|
|
|
|
@section('content')
|
|
<div class="col-md-12">
|
|
<ul class="breadcrumb">
|
|
<li><a href="/admin">Admin Control</a></li>
|
|
<li class="active">Settings</li>
|
|
</ul>
|
|
<h3 class="nopad">Panel Settings</h3><hr />
|
|
<form action="{{ route('admin.settings') }}" method="POST">
|
|
<div class="row">
|
|
<div class="form-group col-md-6">
|
|
<label class="control-label">Company Name:</label>
|
|
<div>
|
|
<input type="text" class="form-control" name="company" value="{{ old('company', Settings::get('company')) }}" />
|
|
<p class="text-muted"><small>This is the name that is used throughout the panel and in emails sent to clients.</small></p>
|
|
</div>
|
|
</div>
|
|
<div class="form-group col-md-6">
|
|
<label class="control-label">Default Language:</label>
|
|
<div>
|
|
<select name="default_language" class="form-control">
|
|
<option value="de" @if(Settings::get('default_language') === 'de')selected @endif>Deutsch</option>
|
|
<option value="en" @if(Settings::get('default_language') === 'en')selected @endif>English</option>
|
|
<option value="es" @if(Settings::get('default_language') === 'es')selected @endif>Español</option>
|
|
<option value="fr" @if(Settings::get('default_language') === 'fr')selected @endif>Français</option>
|
|
<option value="it" @if(Settings::get('default_language') === 'it')selected @endif>Italiano</option>
|
|
<option value="pl" @if(Settings::get('default_language') === 'pl')selected @endif>Polski</option>
|
|
<option value="pt" @if(Settings::get('default_language') === 'pt')selected @endif>Português</option>
|
|
<option value="ru" @if(Settings::get('default_language') === 'ru')selected @endif>русский</option>
|
|
<option value="se" @if(Settings::get('default_language') === 'se')selected @endif>Svenska</option>
|
|
<option value="zh" @if(Settings::get('default_language') === 'zh')selected @endif>中国的的</option>
|
|
</select>
|
|
<p class="text-muted"><small>This is the default language that all clients will use unless they manually change it.</small></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="alert alert-info">In order to modify your SMTP settings for sending mail you will need to edit the <code>.env</code> file in this project's root folder.</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="form-group col-md-6">
|
|
<label class="control-label">Send Emails From:</label>
|
|
<div>
|
|
<input type="text" class="form-control" name="email_from" value="{{ old('email_from', Settings::get('email_from', env('MAIL_FROM', 'you@example.com'))) }}" />
|
|
<p class="text-muted"><small>The email address that panel emails will be sent from. Note that some SMTP services require this to match for a given API key.</small></p>
|
|
</div>
|
|
</div>
|
|
<div class="form-group col-md-6">
|
|
<label class="control-label">Email Sender Name:</label>
|
|
<div>
|
|
<input type="text" class="form-control" name="email_sender_name" value="{{ old('email_sender_name', Settings::get('email_sender_name', env('MAIL_FROM_NAME', 'Pterodactyl Panel'))) }}" />
|
|
<p class="text-muted"><small>The name that emails will appear to come from.</small></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="well well-sm">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
{!! csrf_field() !!}
|
|
<input type="submit" class="btn btn-sm btn-primary" value="Modify Settings">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<script>
|
|
$(document).ready(function () {
|
|
$('#sidebar_links').find("a[href='/admin/settings']").addClass('active');
|
|
});
|
|
</script>
|
|
@endsection
|