@extends('layouts.fixed') {{--Add Hanger By Nishat--}} @section('title','WELL-GROUP | HANGER/SIZER BOOKING') @section('content')

Hanger/Sizer Booking

{{ Form::open(['action'=>'Merchandise\HangerBookingController@store','method'=>'POST', 'class'=>'form-horizontal']) }}

{{ Form::label('unit_id','Company Unit: ') }} {{ Form::select('unit_id',$repository->AllCompanyUnit(),null,['class'=>'form-control','placeholder'=>'Select Unit']) }}

{{ Form::label('to','To: ') }} {{ Form::text('to',null,['class'=>'form-control','placeholder'=>'To']) }}

{{ Form::label('attn','ATTN: ') }} {{ Form::text('attn',null,['class'=>'form-control','placeholder'=>'Attn']) }}

{{ Form::label('sub','Subject: ') }} {{ Form::text('sub',null,['class'=>'form-control','placeholder'=>'subject']) }}

{{ Form::label('date','Date: ') }} {{ Form::date('date',null,['class'=>'form-control','placeholder'=>'Date']) }}

{{ Form::label('budget_sheet_style','Budget Sheet Style: ') }} {{ Form::select('budget_sheet_id',$budget_sheet_style,null,['class'=>'form-control','placeholder'=>'Select Style','required']) }}


Buyer Style Gmnts Size Item Item Code Quality Gmnts Qty With Percentage(%) Booking Qty. Remarks Action
{{--{{ Form::label('','Unit : ') }}--}} {{ Form::text('buyer1',null,['id'=>'buyer1','class'=>'form-control','placeholder'=>'Buyer']) }} @if($errors->has('buyer1')) {{ $errors->first('buyer1') }} @endif
{{--{{ Form::label('','Unit : ') }}--}} {{ Form::text('style1',null,['id'=>'style1','class'=>'form-control','placeholder'=>'style']) }} @if($errors->has('style1')) {{ $errors->first('style1') }} @endif
{{--{{ Form::label('','Unit : ') }}--}} {{ Form::text('gmnts_size1',null,['id'=>'gmnts_size1','class'=>'form-control','placeholder'=>'Size']) }} @if($errors->has('gmnts_size1')) {{ $errors->first('gmnts_size1') }} @endif
{{--{{ Form::label('','Unit : ') }}--}} {{ Form::text('hanger_item1',null,['id'=>'hanger_item1','class'=>'form-control','placeholder'=>'Item']) }} @if($errors->has('hanger_item1')) {{ $errors->first('hanger_item1') }} @endif
{{--{{ Form::label('','Unit : ') }}--}} {{ Form::text('item_code1',null,['id'=>'item_code1','class'=>'form-control','placeholder'=>'Item Code']) }} @if($errors->has('item_code1')) {{ $errors->first('item_code1') }} @endif
{{--{{ Form::label('','Unit : ') }}--}} {{ Form::text('quality1',null,['id'=>'quality1','class'=>'form-control','placeholder'=>'Quality']) }} @if($errors->has('quality1')) {{ $errors->first('quality1') }} @endif
{{--{{ Form::label('','Unit : ') }}--}} {{ Form::text('gmnts_qty1',null,['id'=>'gmnts_qty1','class'=>'form-control','placeholder'=>'Gmnts Qty']) }} @if($errors->has('gmnts_qty1')) {{ $errors->first('gmnts_qty1') }} @endif
{{--{{ Form::label('','Unit : ') }}--}} {{ Form::text('percentage1',null,['id'=>'percentage1','onKeyup'=>'qty_calculate()','class'=>'form-control','placeholder'=>'Percentage']) }} @if($errors->has('percentage1')) {{ $errors->first('percentage1') }} @endif
{{--{{ Form::label('','Unit : ') }}--}} {{ Form::text('book_qty1',null,['id'=>'book_qty1','class'=>'form-control','placeholder'=>'Book Qty.']) }} @if($errors->has('book_qty1')) {{ $errors->first('book_qty1') }} @endif
{{--{{ Form::label('','Unit : ') }}--}} {{ Form::text('remarks1',null,['id'=>'remarks1','class'=>'form-control','placeholder'=>'Remarks']) }} @if($errors->has('remarks1')) {{ $errors->first('remarks1') }} @endif
{{ Form::button('',['class'=>'far fa-trash-alt btn btn-danger',"id"=>'remove','onclick'=>'remove()']) }} || {{ Form::button("",['class'=>'btn btn-primary far fa-plus-square','id'=>'add_more','onclick'=>'addRow()']) }}
{{ Form::button('SAVE ',['class'=>'far fa-save fa-3x btn btn-success','type'=>'submit']) }}
{{ Form::close() }}
@endsection