{!! $errors->first('parent_id', '')!!}
{!! Form::text('name', isset($location) && $location->name ? $location->name : old('name'), ['class' => 'form-control', 'id' => 'name', 'placeholder' => 'Enter Location Name', 'maxlength' => 100]) !!} {!! $errors->first('name', '
')!!}
{!! Form::text('radius_in_meter', isset($location) && $location->radius_in_meter ? $location->radius_in_meter : old('radius_in_meter'), ['class' => 'form-control', 'id' => 'radius_in_meter', 'placeholder' => 'Enter Radius In Meter', 'maxlength' => 6, 'onChange' => 'geoCircle()']) !!} {!! $errors->first('radius_in_meter', '
')!!}