{!! Form::text('name')
-> label(trans('loantype::loantype.label.name'))
-> required()
-> placeholder(trans('loantype::loantype.placeholder.name'))!!}
{!! Form::text('slug')
-> label(trans('loantype::loantype.label.slug'))
-> required()
-> placeholder(trans('loantype::loantype.placeholder.slug'))!!}
{!! Form::decimal('min_investment')
-> label(trans('loantype::loantype.label.min_investment'))
-> required()
-> placeholder(trans('loantype::loantype.placeholder.min_investment'))!!}
{!! Form::text('max_investment')
-> label(trans('loantype::loantype.label.max_investment'))
-> required()
-> placeholder(trans('loantype::loantype.placeholder.max_investment'))!!}
{!! Form::inline_checkboxes('interest_after_matured[]')
-> checkboxes(trans('loantype::loantype.options.interest_after_matured'))
-> required()
-> label(trans('loantype::loantype.label.interest_after_matured'))!!}
{!! Form::inline_checkboxes('release_deposit[]')
-> checkboxes(trans('loantype::loantype.options.release_deposit'))
-> required()
-> label(trans('loantype::loantype.label.release_deposit'))!!}
{!! Form::numeric('profit')
-> label(trans('loantype::loantype.label.profit'))
-> required()
-> placeholder(trans('loantype::loantype.placeholder.profit'))!!}
{!! Form::numeric('investment_duration')
-> label(trans('loantype::loantype.label.investment_duration'))
-> required()
-> placeholder(trans('loantype::loantype.placeholder.investment_duration'))!!}
{!! Form::select('investment_duration_type')
-> options(trans('loantype::loantype.options.investment_duration_type'))
-> label(trans('loantype::loantype.label.investment_duration_type'))
-> required()
-> placeholder(trans('loantype::loantype.placeholder.investment_duration_type'))!!}
{!! Form::select('week_type')
-> options(trans('loantype::loantype.options.week_type'))
-> label(trans('loantype::loantype.label.week_type'))
-> required()
-> placeholder(trans('loantype::loantype.placeholder.week_type'))!!}
{!! Form::text('user_id')
-> label(trans('loantype::loantype.label.user_id'))
-> required()
-> placeholder(trans('loantype::loantype.placeholder.user_id'))!!}
{!! Form::text('user_type')
-> label(trans('loantype::loantype.label.user_type'))
-> required()
-> placeholder(trans('loantype::loantype.placeholder.user_type'))!!}