You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.8 KiB
30 lines
1.8 KiB
<!-- Name Form Input -->
|
|
<div class="form-group @if ($errors->has('name')) has-error @endif">
|
|
{!! Form::label('name', __('lang.name')) !!}
|
|
{!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => __('lang.name')]) !!}
|
|
@if ($errors->has('name')) <p class="help-block">{{ $errors->first('name') }}</p> @endif
|
|
</div>
|
|
|
|
<div class="form-group @if ($errors->has('symbol')) has-error @endif">
|
|
{!! Form::label('symbol', __('lang.symbol')) !!}
|
|
{!! Form::text('symbol', null, ['class' => 'form-control', 'placeholder' => __('lang.symbol')]) !!}
|
|
@if ($errors->has('symbol')) <p class="help-block">{{ $errors->first('symbol') }}</p> @endif
|
|
</div>
|
|
|
|
<div class="form-group @if ($errors->has('decimal_length')) has-error @endif">
|
|
{!! Form::label('decimal_length', __('lang.decimal_length')) !!}
|
|
{!! Form::number('decimal_length', null, ['class' => 'form-control', 'placeholder' => __('lang.decimal_length')]) !!}
|
|
@if ($errors->has('decimal_length')) <p class="help-block">{{ $errors->first('decimal_length') }}</p> @endif
|
|
</div>
|
|
|
|
<!-- email Form Input -->
|
|
<div class="form-group @if ($errors->has('description')) has-error @endif">
|
|
{!! Form::label('description', __('lang.description')) !!}
|
|
{!! Form::textarea('description', null, ['class' => 'form-control', 'placeholder' => __('lang.description'), 'rows' => '4']) !!}
|
|
@if ($errors->has('description')) <p class="help-block">{{ $errors->first('description') }}</p> @endif
|
|
</div>
|
|
<div class="form-group @if ($errors->has('actived')) has-error @endif">
|
|
{!! Form::label('actived', __('lang.active_status')) !!}
|
|
{!! Form::select('actived', [ '1' => __('lang.enabled'),'0' => __('lang.disable')], isset($currency) ? $currency->actived : null, ['class' => 'form-control']) !!}
|
|
@if ($errors->has('actived')) <p class="help-block">{{ $errors->first('actived') }}</p> @endif
|
|
</div>
|
|
|