@extends('layouts.app') @section('title',$image->filename) @section('breadcrumb') @endsection @section('content')

{{ $image->filename }}

{!! Form::open(['action' => ['ImageController@rotate',$image],'method' => 'put','id' => 'image-rotate']) !!} {!! Form::hidden('rotate',null) !!} {!! Form::close() !!}
{!! Form::model($image, ['action' => ['ImageController@update',$image],'method' => 'put']) !!}
{!! Form::text('mypicturemaxx_number',null,['class' => 'form-control','id' => 'mypicturemaxx_number']) !!}
{!! Form::select('supplier_id',$suppliers->pluck('name','id')->prepend('--','')->all(),null,['class' => 'form-control','id' => 'supplier_id']) !!}
{!! Form::select('image_set_id',$imagesets->pluck('title','id')->prepend('--','')->all(),null,['class' => 'form-control','id' => 'image_set_id']) !!}
{!! Form::close() !!}

Metadaten

@foreach ($current_meta as $key => $value)
{{ studly_case($key) }}
@if ( is_array($value) ) {{ join(', ',$value) }} @else {{ $value }} @endif
@endforeach @endsection @section('script') @endsection