@extends('admin.template.master') @section('title')

Product Book

@endsection @section('main-content')

Entry

{!! Form::open(['method' => 'PATCH', 'url' => '/admin/product-books/' .$productBook->product_book_id, 'enctype' => 'multipart/form-data']) !!}
{!! Form::label('Product Book Title') !!} {!! Form::text('product_book_title', $productBook->product_book_title, ['class' => 'form-control', 'placeholder' => 'Enter product book title']) !!} @if ($errors->has('product_book_title')){!! $errors->first('product_book_title') !!}@endif
{!! Form::label('Product Book') !!} {!! Form::file('product_book_name') !!} @if ($errors->has('product_book_name')){!! $errors->first('product_book_name') !!}@endif
{!! Form::label('Status') !!} {!! Form::select('product_book_is_exist', [1 => 'Active', 0 => 'Inactive'], $productBook->product_book_is_exist, ['class' => 'form-control']) !!}
{!! Form::close() !!}
@endsection @section('javascripts') @endsection