@extends('layouts.fixed') {{--Add Button By Nishat--}} @section('title','WELL-GROUP | BUTTON BOOKING') @section('content')

Button Booking

{{ Form::open(['action'=>'Merchandise\ButtonBookingController@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'=>'Sub']) }}

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

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

{{ Form::label('button_size','Button Size: ') }} {{ Form::text('button_size',null,['class'=>'form-control','placeholder'=>'Button Size.']) }}

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

{{ Form::label('button_desc','Button Description: ') }} {{ Form::textarea('button_desc',null,['class'=>'form-control','placeholder'=>'Button Desc.']) }}


Gmts Size Button Color Color Code Button Metal Color Button Details Button Length Gmnts Qty With Percentage(%) Booking Qty. Remarks Action
{{--{{ Form::label('','Unit : ') }}--}} {{ Form::text('size1',null,['id'=>'size1','class'=>'form-control','placeholder'=>'Gmts Size']) }} @if($errors->has('size1')) {{ $errors->first('size1') }} @endif
{{--{{ Form::label('','Unit : ') }}--}} {{ Form::text('color_button1',null,['id'=>'color_button1','class'=>'form-control','placeholder'=>'Color']) }} @if($errors->has('color_button1')) {{ $errors->first('color_button1') }} @endif
{{--{{ Form::label('','Unit : ') }}--}} {{ Form::text('color_code1',null,['id'=>'color_code1','class'=>'form-control','placeholder'=>'Color Code']) }} @if($errors->has('color_code1')) {{ $errors->first('color_code1') }} @endif
{{ Form::text('button_color1',null,['id'=>'button_color1','class'=>'form-control','placeholder'=>'Enter Color']) }} @if ($errors->has('button_color1')) {{ $errors->first('button_color1') }} @endif
{{ Form::text('button_details1',null,['id'=>'button_details1','class'=>'form-control','placeholder'=>'Enter Details']) }} @if ($errors->has('button_details1')) {{ $errors->first('button_details1') }} @endif
{{--{{ Form::label('','Unit : ') }}--}} {{ Form::text('length1',null,['id'=>'length1','class'=>'form-control','placeholder'=>'Length']) }} @if($errors->has('length1')) {{ $errors->first('length1') }} @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 @section('script') @stop