@extends('admin/public/layout') @section('css') @endsection @section('title') 添加商品 @endsection @section('content')

商品管理 添加商品

(虚拟物品不用邮寄例。如:手机充值等)
  
@if($errors->has('name'))

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

@endif
@if($errors->has('remnants'))

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

@endif
@if($errors->has('coins'))

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

@endif
{{--
--}} {{----}} {{----}} {{--@if($errors->has('description'))

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

@endif--}} {{--
--}}
{!! old('description','') !!}
@if ($errors->has('description'))

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

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