@extends('layouts.app') @section('title','Lieferant '.$supplier->name) @section('breadcrumb') @endsection @section('content')

{{ $supplier->name }}

@include('includes.errors') {!! Form::model($supplier,['action' => ['SupplierController@update',$supplier],'method' => 'put']) !!} @include('supplier._form')
Metadaten Suchen/Ersetzen
@if ( count($supplier->keywords) > 0) @foreach ($supplier->keywords as $keyword) @include('supplierkeyword._form',['keyword' => $keyword->keyword,'replacement' => $keyword->replacement,'n' => $n, 'id' => $keyword->id]) @endforeach @endif
{!! Form::close() !!} @endsection @section('script') @endsection