@extends('layouts.app') @section('title','Neue Serie') @section('breadcrumb') @endsection @section('content') {!! Form::model($image_set,['action' => 'ImageSetController@store']) !!}

Neue Serie

@include('includes.errors')
{!! Form::label('title','Titel',['class' => 'col-3 col-form-label']) !!}
{!! Form::text('title',null,['class' => 'form-control']) !!}
Rubriken
@if ( count($categories) > 0 )
@foreach ($categories->every(2) as $category)
@endforeach
@foreach ($categories->every(2,1) as $category)
@endforeach
@else
Keine Rubriken vorhanden.
@endif
Versand
{!! Form::hidden('allow_distribution',0) !!} {!! Form::checkbox('allow_distribution','1',null,['class' => 'form-check-input','id' => 'distribution_l']) !!} {!! Form::label('distribution_l','Versenden',['class' => 'form-check-label']) !!}
{!! Form::hidden('only_archive',0) !!} {!! Form::checkbox('only_archive','1',null,['class' => 'form-check-input','id' => 'archive_l']) !!} {!! Form::label('archive_l','Archiv',['class' => 'form-check-label']) !!}

Bilder in der Serie

{!! Form::close() !!}

Alle Bilder

{!! Form::select('supplier_id',$suppliers->pluck('name','id')->prepend('Kein Lieferant','0')->prepend('--','')->all(),null,['class' => 'form-control ml-1','id' => 'supplier_filter']) !!}
@endsection @section('script') @endsection