@extends('admin/public/layout') @section('title')站点设置@endsection @section('content')

站点设置 站点信息设置

(网站名称,将显示在页面Title处) @if ($errors->has('website_name'))

{{ $errors->first('website_name') }}

@endif
(网站口号) @if ($errors->has('website_slogan'))

{{ $errors->first('website_slogan') }}

@endif
(例如:欢迎加入矿山问答系统,一起记录矿山的世界) @if ($errors->has('website_welcome'))

{{ $errors->first('website_welcome') }}

@endif
(您站点的完整域名。例如: http://www.qasystem.com,不要以斜杠 (“/”) 结尾) @if ($errors->has('website_url'))

{{ $errors->first('website_url') }}

@endif
(站点管理员的邮箱地址) @if ($errors->has('website_admin_email'))

{{ $errors->first('website_admin_email') }}

@endif
{{--
--}} {{-- --}} {{-- (格式类似“京ICP证030173号”,它将显示在页面底部,没有请留空)--}} {{-- --}} {{-- @if ($errors->has('website_icp'))

{{ $errors->first('website_icp') }}

@endif--}} {{--
--}}
(网站的前台默认显示的模板)
(网站的前台模板默认色调)
(设置范围是1-8640,缓存相关数据,包括首页缓存、积分排行榜等) @if ($errors->has('website_cache_time'))

{{ $errors->first('website_cache_time') }}

@endif
(扩展头部信息,例如meta标签等) @if ($errors->has('website_header'))

{{ $errors->first('website_header') }}

@endif
(扩展body前的底部信息,例如第三方统计代码等) @if ($errors->has('website_footer'))

{{ $errors->first('website_footer') }}

@endif
(百度分享或者jiathis等第三方分享代码) @if ($errors->has('website_share_code'))

{{ $errors->first('website_share_code') }}

@endif
@endsection @section('script') @endsection