@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
{{ Form::close() }}