5 @include('settings/navbar', ['selected' => 'settings'])
7 <div class="container small">
11 <form action="/settings" method="POST">
13 <div class="form-group">
14 <label for="setting-app-name">Application Name</label>
15 <input type="text" value="{{ Setting::get('app-name', 'BookStack') }}" name="setting-app-name" id="setting-app-name">
17 <div class="form-group">
18 <label for="setting-app-public">Allow public viewing?</label>
19 <label><input type="radio" name="setting-app-public" @if(Setting::get('app-public') == 'true') checked @endif value="true"> Yes</label>
20 <label><input type="radio" name="setting-app-public" @if(Setting::get('app-public') == 'false') checked @endif value="false"> No</label>
22 <div class="form-group">
23 <button type="submit" class="button pos">Update Settings</button>