{!! Form::text('name')
-> label(trans('plan::location.label.name'))
-> placeholder(trans('plan::location.placeholder.name'))!!}
{!! Form::text('address')
-> label(trans('plan::location.label.address'))
-> placeholder(trans('plan::location.placeholder.address'))!!}
{!! Form::text('city')
-> label(trans('plan::location.label.city'))
-> placeholder(trans('plan::location.placeholder.city'))!!}
{!! Form::text('postcode')
-> label(trans('plan::location.label.postcode'))
-> placeholder(trans('plan::location.placeholder.postcode'))!!}
{!! Form::decimal('latitude')
-> label(trans('plan::location.label.latitude'))
-> placeholder(trans('plan::location.placeholder.latitude'))!!}
{!! Form::decimal('longitude')
-> label(trans('plan::location.label.longitude'))
-> placeholder(trans('plan::location.placeholder.longitude'))!!}