@extends('layouts.main') @section('title') Calculator @endsection @section('page-title')

Calculator

{!! Form::open(['files' => true]) !!}
{{ Form::label('type', 'Type', ['class' => 'col-sm-2 col-form-label text-center']) }}
{{ Form::label('type', 'Number Of Unit', ['class' => 'col-sm-2 col-form-label text-center']) }}
{{ Form::number('NumberOfUnits', '', ['class' => 'form-control', 'placeholder' => 'Number Of Unit', 'id' => 'num_of_unit', 'required' => true]) }}

{{ Form::label('type', 'Type', ['class' => 'col-sm-2 col-form-label text-center']) }}
{{ Form::label('type', 'Converted Figure', ['class' => 'col-sm-2 col-form-label text-center']) }}
{{ Form::text('Converted Figure', '', ['class' => 'form-control', 'placeholder' => 'Converted Figure', 'id' => 'converted_figure', 'readonly' => true]) }}
{!! Form::close() !!}
@section('script') @endsection @endsection