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

Super Admin Settings

@if(session('error')) @endif @if(session('success')) @endif

Fund Transfer

{{ csrf_field() }} {{-- Laravel CSRF Token --}}
{{-- Transfer From Section --}}
{{-- Transfer From Type --}}
@if ($errors->has('tran_from_type')) {{ $errors->first('tran_from_type') }} @endif
{{-- Transfer From --}}
@if ($errors->has('tran_from')) {{ $errors->first('tran_from') }} @endif
  • BALANCE 0.00
  • CREDIT 0.00
  • EQUITY 0.00
  • MARGIN FREE 0.00
  • Transferable Equity 0.00
  • IB --
{{-- Transfer To Section --}}
{{-- Transfer To Type --}}
@if ($errors->has('tran_to_type')) {{ $errors->first('tran_to_type') }} @endif
{{-- Transfer To --}}
@if ($errors->has('tran_to')) {{ $errors->first('tran_to') }} @endif
  • BALANCE 0.00
  • CREDIT 0.00
  • EQUITY 0.00
  • MARGIN FREE 0.00
  • Transferable Equity 0.00
  • IB --
{{-- Amount & Admin Note --}}
@if ($errors->has('amount')) {{ $errors->first('amount') }} @endif
@if ($errors->has('admin_note')) {{ $errors->first('admin_note') }} @endif
{{-- Submit Buttons --}}
@endsection @section('script') @endsection