@extends('layouts/gnr_layout') @section('title', '| Edit Branch Requisition') @section('content')
{{-- fullbody start --}}
{{-- panel start --}}
Update Branch Requisition
{{-- panel body start --}}
{{--
--}} {{-- left start --}}
{{-- {!! Form::label('name', 'Branch Name:', ['class' => 'col-sm-4 control-label'],false) !!} --}}
{{-- {!! Form::text('name', $value = null, ['class' => 'form-control', 'id' => 'name','type' => 'text', 'placeholder' => 'Enter branch name']) !!} --}}

{{-- {!! Form::label('projectTypeId', 'Project Type:', ['class' => 'col-sm-4 control-label'],false) !!} --}}

{{-- {!! Form::label('branchCode', 'Branch Code:', ['class' => 'col-sm-4 control-label'],false) !!} --}}
{{-- {!! Form::text('branchCode', $value = null, ['class' => 'form-control', 'id' =>'branchCode', 'type' => 'text', 'placeholder' => 'Enter branc code']) !!} --}}

{!! Form::label('companyId', 'Company Name:*', ['class' => 'col-sm-4 control-label'],false) !!}
{{--{!! Form::select('companyId', $companyId, null, array('class'=>'form-control', 'id' => 'companyId')) !!} --}}

{{-- {!! Form::label('projectTypeId', 'Project Type:', ['class' => 'col-sm-4 control-label'],false) !!} --}}

{{-- {!! Form::label('contactPerson', 'Contact Person:', ['class' => 'col-sm-4 control-label'],false) !!} --}}

{{-- left end --}} {{-- right start --}}
{{-- {!! Form::label('phone', 'Mobile:', ['class' => 'col-sm-4 control-label'],false) !!} --}}
{{-- {!! Form::text('phone', $value = null, ['class' => 'form-control', 'id' => 'phone', 'type' => 'text', 'placeholder' => 'Enter phone number']) !!} --}}

{{-- {!! Form::label('email', 'Email:', ['class' => 'col-sm-4 control-label'],false) !!} --}}
{{-- {!! Form::text('email', $value = null, ['class' => 'form-control', 'id' => 'email', 'type' => 'text', 'placeholder' => 'Enter email address']) !!} --}}

{{-- {!! Form::label('address', 'Address:', ['class' => 'col-sm-4 control-label'],false) !!} --}}
{{-- {!! Form::textarea('address', $value = null, ['class' => 'form-control', 'id' => 'address', 'rows' => 2, 'type' => 'text', 'placeholder' => 'Enter address']) !!} --}}

{!! Form::label('district_code', 'District:', ['class' => 'col-sm-4 control-label'],false) !!}
{!! Form::select('district_code', ['' => 'Please Select District'] + $data['districtCodes'], $data['district']->district_code ?? null, array('class'=>'form-control select2', 'id'=> 'district_code')) !!}

{!! Form::label('thana_code', 'Upazila:', ['class' => 'col-sm-4 control-label'],false) !!}
{!! Form::select('thana_code', ['' => 'Please Select Thana'], null, ['class' => 'form-control select2', 'id' => 'thana_code']) !!}

{!! Form::label('branchOpeningDate', 'B. Opening Date:*', ['class' => 'col-sm-4 control-label'],false) !!}
{!! Form::text('branchOpeningDate', $value = $data['requisition']->branchOpeningDate, ['class' => 'form-control', 'id' => 'branchOpeningDate', 'type' => 'text', 'placeholder' => 'Enter Branch Opening Date:', 'autocomplete' => 'off']) !!}

{!! Form::label('softwareStartDate', 'S. Opening Date:*', ['class' => 'col-sm-4 control-label'],false) !!}
{!! Form::text('softwareStartDate', $value = $data['requisition']->softwareStartDate, ['class' => 'form-control', 'id'=> 'softwareStartDate', 'type' => 'text', 'placeholder' => 'Enter Software Opening Date', 'autocomplete' => 'off']) !!}

{{-- right end --}} {{-- buttons start --}}
{!! Form::label('submit', ' ', ['class' => 'col-sm-0 control-label'],false) !!}
{{-- --}} {!! Form::submit('Update', ['id' => 'add', 'class' => 'btn btn-info']); !!} Close
{{-- buttons end --}}
{{-- panel body end --}}
{{-- panel end --}}
{{-- fullbody end --}}
@endsection {{-- SCRIPTS --}}