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