@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 $meta_key => $meta_value)
{{ studly_case($meta_key) }}
@if (!empty($meta_value)) {!! nl2br(e($meta_value)) !!} @else   @endif
@endforeach @endsection @section('script') @endsection