{!! Form::numeric('company_id')
-> label(trans('benchmark::benchmark.label.company_id'))
-> placeholder(trans('benchmark::benchmark.placeholder.company_id'))!!}
{!! Form::select('country_id')
-> options(trans('benchmark::benchmark.options.country_id'))
-> label(trans('benchmark::benchmark.label.country_id'))
-> placeholder(trans('benchmark::benchmark.placeholder.country_id'))!!}
{!! Form::select('location_id')
-> options(trans('benchmark::benchmark.options.location_id'))
-> label(trans('benchmark::benchmark.label.location_id'))
-> placeholder(trans('benchmark::benchmark.placeholder.location_id'))!!}
{!! Form::text('name')
-> label(trans('benchmark::benchmark.label.name'))
-> placeholder(trans('benchmark::benchmark.placeholder.name'))!!}
{!! Form::textarea ('details')
-> label(trans('benchmark::benchmark.label.details'))
-> placeholder(trans('benchmark::benchmark.placeholder.details'))!!}