@extends('admin/public/layout') @section('title') 积分充值 @endsection @section('content')

积分金币管理 添加积分、金币

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

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

@endif
(根据操作类型确定是加/减 金币数或经验值)
  
(只能是正整数,0为不进行修改) @if($errors->has('coins'))

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

@endif
(只能是正整数,0为不进行修改) @if($errors->has('credits'))

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

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