{!! Form::text('currency_name')
-> label(trans('crypto::crypto.label.currency_name'))
-> required()
-> placeholder(trans('crypto::crypto.placeholder.currency_name'))!!}
{!! Form::text('currency_symbol')
-> label(trans('crypto::crypto.label.currency_symbol'))
-> required()
-> placeholder(trans('crypto::crypto.placeholder.currency_symbol'))!!}
{!! Form::textarea ('currency_content')
-> label(trans('crypto::crypto.label.currency_content'))
-> placeholder(trans('crypto::crypto.placeholder.currency_content'))!!}
{!! Form::select('currency_status')
-> options(trans('crypto::crypto.options.currency_status'))
-> label(trans('crypto::crypto.label.currency_status'))
-> required()
-> placeholder(trans('crypto::crypto.placeholder.currency_status'))!!}