@extends('layouts.app')
@section('title','Bilder')
@section('breadcrumb')
@endsection
@section('content')
Bilder
@if ($itype === 'list')
@endif
@if (count($images) > 0)
@if ( $itype === 'list' )
{!! Form::open(['action' => 'ImageController@massEdit','method' => 'post','id' => 'image_massedit_form']) !!}
{!! Form::close() !!}
@else
@each('image._gallery_item',$images,'image')
@endif
@else
Keine nicht zugewiesenen Bilder.
@endif
@endsection
@section('script')
@endsection