@section('content')
Edit picture
@if($errors->has())
@foreach ($errors->all() as $row)
{{ $row }}
@endforeach
@endif
{{ Form::model($picture, array('route' => array('admin.galleries.update', $picture->picture_id), 'method' => 'PUT', 'files' => true, 'class' => 'form-horizontal')) }}
{{ Form::hidden('neighborhood_id', $neighborhood->neighborhood_id) }}
{{ Form::close() }}
@endsection