@section('content')

Eventful data

@if($errors->has())
@foreach ($errors->all() as $row)
{{ $row }}
@endforeach
@endif {{ Form::open(array('route' => array('admin.places-eventful.update', $place['id']), 'method' => 'PUT', 'class' => 'form-horizontal')) }}
{{ $place['name'] }}
{{ $place['latitude'] }}, {{ $place['longitude'] }}
{{ $place['address'] }}, {{ $place['city'] }}, {{ $place['region'] }} {{ $place['postal_code'] }}
{{ $place['url'] }}
{{ Form::text('factual_id', null, array('id' => 'input-factual_id', 'placeholder' => 'Tags', 'required' => 'true', 'class' => 'form-control')) }}
Cancel
{{ Form::close() }} @endsection