mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
29 lines
1.0 KiB
PHP
29 lines
1.0 KiB
PHP
@extends('base')
|
|
|
|
@section('content')
|
|
|
|
@include('settings/navbar', ['selected' => 'settings'])
|
|
|
|
<div class="container small">
|
|
|
|
<h1>Settings</h1>
|
|
|
|
<form action="/settings" method="POST">
|
|
{!! csrf_field() !!}
|
|
<div class="form-group">
|
|
<label for="setting-app-name">Application Name</label>
|
|
<input type="text" value="{{ Setting::get('app-name', 'BookStack') }}" name="setting-app-name" id="setting-app-name">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="setting-app-public">Allow public viewing?</label>
|
|
<label><input type="radio" name="setting-app-public" @if(Setting::get('app-public') == 'true') checked @endif value="true"> Yes</label>
|
|
<label><input type="radio" name="setting-app-public" @if(Setting::get('app-public') == 'false') checked @endif value="false"> No</label>
|
|
</div>
|
|
<div class="form-group">
|
|
<button type="submit" class="button pos">Update Settings</button>
|
|
</div>
|
|
</form>
|
|
|
|
</div>
|
|
|
|
@stop |