42 lines
1004 B
PHP
42 lines
1004 B
PHP
@extends('layouts.app')
|
|
|
|
@section('page-title', __('General Settings'))
|
|
@section('page-heading', __('General Settings'))
|
|
|
|
@section('breadcrumbs')
|
|
<li class="breadcrumb-item text-muted">
|
|
@lang('Settings')
|
|
</li>
|
|
<li class="breadcrumb-item active">
|
|
@lang('General')
|
|
</li>
|
|
@stop
|
|
|
|
@section('content')
|
|
|
|
@include('partials.messages')
|
|
|
|
<form action="{{ route('settings.general.update') }}" method="POST" id="general-settings-form">
|
|
@csrf
|
|
|
|
<div class="row">
|
|
<div class="col-md-8">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<div class="form-group">
|
|
<label for="name">@lang('Name')</label>
|
|
<input type="text" class="form-control input-solid" id="app_name"
|
|
name="app_name" value="{{ setting('app_name') }}">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-primary">
|
|
@lang('Update')
|
|
</button>
|
|
</form>
|
|
|
|
@stop
|