@extends('layouts.app') @section('sidebar') @include('sidebar') @stop @section('style') @endsection @section('content')

Super Admin Settings

Fund Transfer

{!! Form::open(array('route' => 'superadmin.fund-transfer.store','class'=>'m-form m-form--fit m-form--label-align-right','role'=>"form",'id'=>'fund_transfer')) !!}
@if(Session::has('fundSuccess'))
{!! Session::get('fundSuccess') !!}
@endif @if(Session::has('fundError'))
{!! Session::get('fundError') !!}
@endif
{!! Html::decode(Form::label('tran_from', 'Transer From :', ['class' => ''])) !!} {!! $errors->first('tran_from', '

:message

') !!}

BALANCE :-  
CREDIT :-  
EQUITY :-  
MARGIN_FREE :-  
{!! Html::decode(Form::label('tran_to', 'Transer To :', ['class' => ''])) !!} {!! $errors->first('tran_to', '

:message

') !!}
BALANCE :-  
CREDIT :-  
EQUITY :-  
MARGIN_FREE :-  
{!! Html::decode(Form::label('amount', 'Amount :', ['class' => ''])) !!} {!! Form::number('amount',null,['class' => 'form-control m-input col-8' , 'data-cent-limit'=>'100' ]) !!} {!! $errors->first('tran_to', '

:message

') !!}
{!! Html::decode(Form::label('admin_note', 'Admin Note :', ['class' => ''])) !!} {!! Form::text('admin_note',null,['class' => 'form-control m-input col-8' ]) !!} {!! $errors->first('admin_note', '

:message

') !!}
{{ Form::submit('Submit', array('class' => 'btn btn-success submit-btn')) }} {{ Form::reset('Cancel', array('class' => 'btn btn-secondary')) }}
{!! Form::close() !!}

Super Admin Settings

@if(Session::has('downSuccess'))
{!! Session::get('downSuccess') !!}
@endif @if(Session::has('downError'))
{!! Session::get('downError') !!}
@endif
{!! Form::open(array('route' => 'superadmin.store','class'=>'m-form m-form--fit','role'=>"form",'id'=>'client_wallet')) !!} {!! Form::hidden('type', 'clients') !!} {!! Html::decode(Form::label('client_id', 'Client wallet balance update :', ['class' => ''])) !!}
{!! Form::select('client_id',array(""=>'Select Client')+$clients,Request::get('client_id',null),['class' => 'form-control m-input col-6' ]) !!}
{{ Form::submit('Update Balance', array('class' => 'btn m-btn m-btn--gradient-from-brand m-btn--gradient-to-info updateDownLine')) }}
{!! $errors->first('client_id', '

:message

') !!} {!! Form::close() !!}
{!! Form::open(array('route' => 'superadmin.store','class'=>'m-form m-form--fit','role'=>"form",'id'=>'IB_wallet')) !!} {!! Form::hidden('types', 'IB') !!} {!! Html::decode(Form::label('IB_id', 'IB wallet balance update :', ['class' => ''])) !!}
{!! Form::select('IB_id',array(""=>'Select IB')+$IBs,Request::get('IB_id',null),['class' => 'form-control m-input col-6' ]) !!}
{{ Form::submit('Update Balance', array('class' => 'btn m-btn m-btn--gradient-from-brand m-btn--gradient-to-info updateDownLine')) }}
{!! $errors->first('IB_id', '

:message

') !!} {!! Form::close() !!}
{!! Form::open(array('route' => 'superadmin.saveCreditAccount','class'=>'m-form m-form--fit','role'=>"form",'id'=>'svae_credited_account')) !!} {!! Html::decode(Form::label('account_no', 'Do Not Remove Credit Ac No :', ['class' => ''])) !!}
{{ Form::submit('Update Accounts', array('class' => 'btn m-btn m-btn--gradient-from-brand m-btn--gradient-to-info')) }}
{!! $errors->first('account_no', '

:message

') !!} {!! Form::close() !!}
@endsection @section('script') {{-- {{ Html::script('custom/datatables/datatables.bundle.js') }} {{ Html::script('custom/eModal/eModal.js') }} --}} @endsection