@include('wallet::wallet.partial.header')
@include('wallet::wallet.partial.aside')
{{$wallet->title}}

{!! $wallet['id'] !!}

{!! $wallet['customer_id'] !!}

{!! $wallet['rate'] !!}

{!! $wallet['deposit'] !!}

{!! $wallet['withdraw'] !!}

{!! $wallet['count'] !!}

{!! $wallet['type'] !!}

{!! $wallet['created_at'] !!}

{!! $wallet['updated_at'] !!}

{!! $wallet['deleted_at'] !!}
{!! Form::numeric('rate') -> label(trans('wallet::wallet.label.rate')) -> placeholder(trans('wallet::wallet.placeholder.rate'))!!}
{!! Form::decimal('deposit') -> label(trans('wallet::wallet.label.deposit')) -> placeholder(trans('wallet::wallet.placeholder.deposit'))!!}
{!! Form::decimal('withdraw') -> label(trans('wallet::wallet.label.withdraw')) -> placeholder(trans('wallet::wallet.placeholder.withdraw'))!!}
{!! Form::select('type') -> options(trans('wallet::wallet.options.type')) -> label(trans('wallet::wallet.label.type')) -> placeholder(trans('wallet::wallet.placeholder.type'))!!}