@extends('admin/public/layout') @section('title')编辑分类@endsection @section('content')

编辑分类

@if($errors->has('name'))

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

@endif
(英文字母) @if($errors->has('slug'))

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

@endif
(允许显示的栏目)
@foreach( config('tipask.category_types') as $key => $name ) type,$key)) checked @endif > {{ $name }}    @endforeach
(仅对当前层级分类有效) @if($errors->has('sort'))

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

@endif
(禁用后前台不会显示)
  
@endsection @section('script') @endsection