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

{{ __('Calculator') }}

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

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