@extends('layouts.app') @section('title','Bilder bearbeiten') @section('breadcrumb') @endsection @section('content')

Bilder bearbeiten

@include('includes.errors')

Thumbnails

@foreach ($images as $image) @endforeach
{!! Form::open(['action' => ['ImageController@massStore'],'method' => 'post','id' => 'massedit_form']) !!} @if ( isset($imageset_id) ) {!! Form::hidden('imageset_id',$imageset_id) !!} @endif {!! Form::hidden('image_edit_type',$type) !!}
{!! Form::select('supplier_id',$suppliers->pluck('name','id')->prepend('--','')->all(),$images->first()->supplier_id,['class' => 'form-control','id' => 'supplier_id']) !!}
{!! Form::select('image_set_id',$imagesets->pluck('title','id')->prepend('--','')->all(),$images->first()->image_set_id,['class' => 'form-control','id' => 'image_set_id']) !!}
Abbrechen
{!! Form::close() !!} @endsection @section('script') @endsection