{!! Form::label('nome', 'Nome:') !!}
{!! Form::text('nome', null, ['class' => 'form-control']) !!}
{!! Form::label('datavalorinicial', 'Data valor Inicial:') !!}
{!! Form::date('datavalorinicial', isset($contaBancaria) ? $contaBancaria->datavalorinicial : null, ['class' => 'form-control','id'=>'datavalorinicial', 'style'=>'width: 160px']) !!}
@push('scripts')
@endpush
{!! Form::label('valorinicial', 'Valor Inicial:') !!}
{!! Form::text('valorinicial', null, ['class' => 'form-control', 'id' => 'valorinicial']) !!}
@section('javascript')
@endsection