@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.withdraw.title_singular') }}
@csrf
@if($errors->has('affiliate'))
{{ $errors->first('affiliate') }}
@endif {{ trans('cruds.withdraw.fields.affiliate_helper') }}
@if($errors->has('amount'))
{{ $errors->first('amount') }}
@endif {{ trans('cruds.withdraw.fields.amount_helper') }}
@if($errors->has('attributes'))
{{ $errors->first('attributes') }}
@endif {{ trans('cruds.withdraw.fields.attributes_helper') }}
@if($errors->has('receipt'))
{{ $errors->first('receipt') }}
@endif {{ trans('cruds.withdraw.fields.receipt_helper') }}
@if($errors->has('paid_at'))
{{ $errors->first('paid_at') }}
@endif {{ trans('cruds.withdraw.fields.paid_at_helper') }}
@if($errors->has('status'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.withdraw.fields.status_helper') }}
@endsection @section('scripts') @endsection