@if($customFields)
{!! trans('lang.main_fields') !!}
@endif
{!! Form::label('name', trans("lang.wallet_name"), ['class' => 'col-md-3 control-label text-md-right mx-1']) !!}
{!! Form::text('name', null, ['class' => 'form-control','placeholder'=> trans("lang.wallet_name_placeholder")]) !!}
{{ trans("lang.wallet_name_help") }}
{!! Form::label('currency', trans("lang.wallet_currency"),['class' => 'col-md-3 control-label text-md-right mx-1']) !!}
{!! Form::select('currency', $currency, null, ['class' => 'select2 form-control']) !!}
{{ trans("lang.wallet_currency_help") }}
{!! Form::label('user_id', trans("lang.wallet_user_id"),['class' => 'col-md-3 control-label text-md-right mx-1']) !!}
{!! Form::select('user_id', $user, null, ['class' => 'select2 form-control']) !!}
{{ trans("lang.wallet_user_id_help") }}
{!! Form::label('enabled', trans("lang.wallet_enabled"),['class' => 'col-md-3 control-label text-md-right mx-1']) !!} {!! Form::hidden('enabled', 0, ['id'=>"hidden_enabled"]) !!}
{!! Form::checkbox('enabled', 1, null) !!}
@if($customFields)
{!! trans('lang.custom_field_plural') !!}
{!! $customFields !!}
@endif
{{trans('lang.cancel')}}