@extends('layouts.main') @section('page-title') {{ __('Edit Items') }} @endsection @section('page-breadcrumb') {{ __('Items') }} @endsection @section('page-action')
@endsection @section('content')
{{ Form::model($productService, ['route' => ['product-service.update', $productService->id], 'method' => 'PUT', 'enctype' => 'multipart/form-data', 'class' => 'needs-validation', 'novalidate']) }} {{ Form::hidden('type', $productService->type, ['id' => 'type']) }}
{{ Form::close() }} @endsection @push('scripts') @endpush