TRF Certest first commit
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
@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
|
||||
Reference in New Issue
Block a user