@extends('backEnd.master') @section('title') @lang('inventory.issue_item') @endsection @section('mainContent')

@lang('inventory.issue_item')

@if(isset($editData)) {{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => array('update-book-data',$editData->id), 'method' => 'POST', 'enctype' => 'multipart/form-data']) }} @else {{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'save-book-data', 'method' => 'POST', 'enctype' => 'multipart/form-data']) }} @endif
@include('backEnd.partials.alertMessage')
@if ($errors->has('member_type')) {{ $errors->first('member_type') }} @endif
@if ($errors->has('subject')) {{ $errors->first('subject') }} @endif
@if ($errors->has('book_number')) {{ $errors->first('book_number') }} @endif
@if ($errors->has('isbn_no')) {{ $errors->first('isbn_no') }} @endif
@if ($errors->has('publisher_name')) {{ $errors->first('publisher_name') }} @endif
@if ($errors->has('author_name')) {{ $errors->first('author_name') }} @endif
@if ($errors->has('rack_number')) {{ $errors->first('rack_number') }} @endif
@if ($errors->has('quantity')) {{ $errors->first('quantity') }} @endif
@if ($errors->has('book_price')) {{ $errors->first('book_price') }} @endif
{{ Form::close() }}
@endsection