@extends('layouts/acc_layout') @section('title', '| Add Budget') @section('content')

Add Budget

{!! Form::open(array('url' => '#', 'role' => 'form', 'class'=>'form-horizontal form-groups', 'id' => 'filteringForm', 'method'=>'get')) !!}
{!! Form::label('projectId', 'Project:', ['class' => 'col-sm-12 control-label']) !!}

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

{!! Form::label('', 'Branch:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('branchId', $branchLists, null ,['id'=>'filBranch','class'=>'form-control input-sm','autocomplete'=>'off']) !!}

@php $yearArr = []; foreach ($fiscalYears->sortByDesc('name') as $key => $year) { $yearArr[$year->id] = $year->name; } @endphp
{!! Form::label('fiscalYearId', 'Fiscal Year', ['class' => 'control-label col-sm-12']) !!}
{!! Form::select('fiscalYearId', $yearArr, null, array('class'=>'form-control input-sm', 'id' => 'fiscalYearId')) !!}
{{--
--}}
{!! Form::label('', '', ['class' => 'control-label col-sm-12']) !!}
{!! Form::button('Proceed', ['id' => 'filteringFormSubmit', 'class' => 'btn btn-primary btn-s animated fadeInRight', 'style'=>'font-size:12px']); !!}
{{--
--}} {{--
--}}
{!! Form::close() !!}