@extends('admin.layout.app') @section('title','Create Branch') @section('content')

Create Branch

{!! Form::open(['route'=>array('branch.store'), 'onsubmit'=>'BtnSubmit.disabled = true','method' => 'post']) !!}
{{$errors->first('branch_name')}}
{{$errors->first('contact_name')}}
{{$errors->first('contact_number')}}
{!! Form::select("vat", ['yes'=> 'yes', 'no'=>'no'], old("vat"), ['class'=>'form-control' ,'id' => 'product_id1','required'=>'required'] ) !!}
{{$errors->first('product_id1')}}
{!! Form::select("inventory_adjustment_account_id", $expenses, old("inventory_adjustment_account_id",91), ['class'=>'form-control' ,'id' => 'inventory_adjustment_account_id','required'=>'required'] ) !!}
{{$errors->first('address')}}
{!! Form::close() !!}
@endsection @push('footerscript') @endpush