@extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title','新增總代理') {{-- vendor styles --}} @section('vendor-styles') @endsection {{-- page styles --}} @section('page-styles') @endsection @section('content')

新增總代理

@csrf
@if(Auth::guard('admin')->check())
股東
@if($errors->has('shareholder'))
  • {{ $errors->first("shareholder") }}
@endif
@endif
帳號
@if($errors->has('account'))
  • {{ $errors->first("account") }}
@endif
密碼
@if($errors->has('password'))
  • {{ $errors->first("password") }}
@endif
姓名
@if($errors->has('name'))
  • {{ $errors->first("name") }}
@endif
額度
@if($errors->has('quota'))
  • {{ $errors->first("quota") }}
@endif
@if($errors->has('remaining'))
  • {{ $errors->first("remaining") }}
@endif
流水
@if($errors->has('feeRatio'))
  • {{ $errors->first("feeRatio") }}
@endif
@if($errors->has('msg'))
  • {{ $errors->first("msg") }}
@endif
@endsection {{-- vendor scripts --}} @section('vendor-scripts') @endsection {{-- page scripts --}} @section('page-scripts') @endsection