@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('general_agent'))
  • {{ $errors->first("general_agent") }}
@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(Auth::guard("generalAgent")->check())
@endif
額度
@if($errors->has('quota'))
  • {{ $errors->first("quota") }}
@endif
剩餘額度
流水 check() ? 'readonly' : '' }}>
@if($errors->has('feeRatio'))
  • {{ $errors->first("feeRatio") }}
@endif
@if($errors->has('msg'))
  • {{ $errors->first("msg") }}
@endif
@if(Auth::guard('admin')->check())
撥入
@if($errors->has('dial_in'))
  • {{ $errors->first("dial_in") }}
@endif
@if($errors->has('dial'))
  • {{ $errors->first("dial") }}
@endif
@if($errors->has('garemaining'))
  • {{ $errors->first("garemaining") }}
@endif
撥出
@if($errors->has('dial_out'))
  • {{ $errors->first("dial_out") }}
@endif
@if($errors->has('dial'))
  • {{ $errors->first("dial") }}
@endif
@if($errors->has('remaining'))
  • {{ $errors->first("remaining") }}
@endif
@endif @if(Auth::guard('generalAgent')->check())
撥入
@if($errors->has('dial_in'))
  • {{ $errors->first("dial_in") }}
@endif
@if($errors->has('dial'))
  • {{ $errors->first("dial") }}
@endif
@if($errors->has('garemaining'))
  • {{ $errors->first("garemaining") }}
@endif
撥出
@if($errors->has('dial_out'))
  • {{ $errors->first("dial_out") }}
@endif
@if($errors->has('dial'))
  • {{ $errors->first("dial") }}
@endif
@if($errors->has('remaining'))
  • {{ $errors->first("remaining") }}
@endif
@endif

旗下成員列表

@foreach($members as $member) @endforeach
編號 帳號 名稱 額度 剩餘額度 操作
{{ $member->memberId }} {{ $member->account }} {{ $member->name }} {{ $member->quota }} {{ $member->remaining }}
@endsection {{-- vendor scripts --}} @section('vendor-scripts') @endsection {{-- page scripts --}} @section('page-scripts') @endsection