{!! Form::label('id', 'Id:', ['class' => 'col-3 control-label text-right']) !!}

{!! $currency->id !!}

{!! Form::label('name', 'Name:', ['class' => 'col-3 control-label text-right']) !!}

{!! $currency->name !!}

{!! Form::label('symbol', 'Symbol:', ['class' => 'col-3 control-label text-right']) !!}

{!! $currency->symbol !!}

{!! Form::label('code', 'Code:', ['class' => 'col-3 control-label text-right']) !!}

{!! $currency->code !!}

{!! Form::label('decimal_digits', 'Decimal Digits:', ['class' => 'col-3 control-label text-right']) !!}

{!! $currency->decimal_digits !!}

{!! Form::label('rounding', 'Rounding:', ['class' => 'col-3 control-label text-right']) !!}

{!! $currency->rounding !!}

{!! Form::label('created_at', 'Created At:', ['class' => 'col-3 control-label text-right']) !!}

{!! $currency->created_at !!}

{!! Form::label('updated_at', 'Updated At:', ['class' => 'col-3 control-label text-right']) !!}

{!! $currency->updated_at !!}