{!! $location['id'] !!}
{!! $location['name'] !!}
{!! $location['description'] !!}
{!! $location['type'] !!}
{!! $location['parent_id'] !!}
{!! $location['latitude'] !!}
{!! $location['longitude'] !!}
{!! $location['slug'] !!}
{!! $location['created_at'] !!}
{!! $location['updated_at'] !!}
{!! $location['deleted_at'] !!}
{!! Form::text('name')
-> label(trans('location::location.label.name'))
-> placeholder(trans('location::location.placeholder.name'))!!}
{!! Form::textarea ('description')
-> label(trans('location::location.label.description'))
-> placeholder(trans('location::location.placeholder.description'))!!}
{!! Form::select('type')
-> options(trans('location::location.options.type'))
-> label(trans('location::location.label.type'))
-> placeholder(trans('location::location.placeholder.type'))!!}
{!! Form::select('parent_id')
-> options(trans('location::location.options.parent_id'))
-> label(trans('location::location.label.parent_id'))
-> required()
-> placeholder(trans('location::location.placeholder.parent_id'))!!}
{!! Form::text('latitude')
-> label(trans('location::location.label.latitude'))
-> placeholder(trans('location::location.placeholder.latitude'))!!}
{!! Form::text('longitude')
-> label(trans('location::location.label.longitude'))
-> placeholder(trans('location::location.placeholder.longitude'))!!}