@extends('layouts._front.dashboard_owner') @section('content') {!! Form::open(array('url' => '/dashboard/shop-owner/bank-routing', 'method' => 'post', 'class' => '','id'=>'profile_edit_form')) !!}
{!! Form::button(' Save',array('class'=>'uk-button uk-form-help-inline text-uppercase uk-text-bold uk-button-primary ','type'=>'submit','name'=>'submit'))!!}
@if (Session::has('success'))
{!!Session::get('success')!!}
@endif @if (Session::has('braintree-error'))
{!!Session::get('braintree-error')!!}
@endif

Banking Information

{!! Form::label('bank_name', 'Bank Name',array('class'=>'lbl' )); !!} {!! Form::text('bank_name',$shopOwner->fldShopOwnerBankName,array('id'=>'bank_name','required','class'=>'text')) !!}
{!! Form::label('account_no', 'Account Number',array('class'=>'lbl' )); !!} {!! Form::text('account_no',$shopOwner->fldShopOwnerBankAccountNumber,array('id'=>'account_no','required','class'=>'text')) !!}
{!! Form::label('type_of_account', 'Type Of Account',array('class'=>'lbl' )); !!} {!! Form::text('type_of_account',$shopOwner->fldShopOwnerTypeofAccount,array('id'=>'type_of_account','required','class'=>'text')) !!}
{!! Form::label('routing_no', 'Routing Number',array('class'=>'lbl' )); !!} {!! Form::text('routing_no',$shopOwner->fldShopOwnerBankRoutingNumber,array('id'=>'routing_no','required','class'=>'text')) !!}

Banking Address

{!! Form::label('banking_street', 'Street',array('class'=>'lbl' )); !!} {!! Form::text('banking_street',$shopOwner->fldShopOwnerBankAddress1,array('id'=>'banking_street','class'=>'text')) !!}
{!! Form::label('banking_city', 'City',array('class'=>'lbl' )); !!} {!! Form::text('banking_city',$shopOwner->fldShopOwnerBankCity,array('id'=>'banking_city','class'=>'text')) !!}
{!! Form::label('banking_state', 'State',array('class'=>'lbl' )); !!} {!! Form::select('banking_state',array('0' => 'Select one')+App\Models\State::displayState(),$shopOwner->fldShopOwnerBankState,array('id'=>'state','data-placeholder'=>'Select State', 'class'=>'required')) !!}
{!! Form::label('banking_zip', 'ZIP',array('class'=>'lbl' )); !!} {!! Form::text('banking_zip',$shopOwner->fldShopOwnerBankZIP,array('id'=>'banking_zip','class'=>'text')) !!}
{!! Form::button(' Save',array('class'=>'uk-button uk-form-help-inline text-uppercase uk-text-bold uk-button-primary ','type'=>'submit','name'=>'submit'))!!}
{!! Form::close() !!} @stop @section('headercodes') @stop @section('extracodes') {{-- */ /* */ /* --}} @stop