@extends('_version_02.commons.layouts.admin') @section('content') {!! Form::model($model, ['class'=>'form-horizontal']) !!} @include('_version_02.commons.layouts.partials._alert')
{{App\Language::trans('Currency Detail')}}

{!! Form::label('code', App\Language::trans('Code'), ['class'=>'control-label col-md-4']) !!}
{!! Form::text('code', null, ['class'=>'form-control','autofocus','required']) !!} {!!$errors->first('code', '')!!}
{!! Form::label('symbol', App\Language::trans('Symbol'), ['class'=>'control-label col-md-4']) !!}
{!! Form::text('symbol', null, ['class'=>'form-control','required']) !!} {!!$errors->first('symbol', '')!!}
{!! Form::label('rate', App\Language::trans('Rate'), ['class'=>'control-label col-md-4']) !!}
{!! Form::number('rate', $model->id ? $model->rate:0, ['min'=>'0','step'=>'0.01','class'=>'form-control','required']) !!} {!!$errors->first('rate', '')!!}
{!! Form::label('is_primary', App\Language::trans('Is Primary'), ['class'=>'control-label col-md-4']) !!}
{!!$errors->first('is_primary', '')!!}
{!! Form::label('status', App\Language::trans('Status'), ['class'=>'control-label col-md-4']) !!}
{!!$errors->first('status', '')!!}
{!! Form::label('is_default', App\Language::trans('Is Default'), ['class'=>'control-label col-md-4']) !!}
{!!$errors->first('is_default', '')!!}
{!! Form::label('remark', App\Language::trans('Remark'), ['class'=>'control-label col-md-2']) !!}
{!! Form::textarea('remark', null, ['rows'=>'5','class'=>'form-control']) !!} {!!$errors->first('remark', '')!!}
@include('_version_02.commons.layouts.partials._form_floaring_footer_standard') {!! Form::close() !!} @endsection @section('script') @if($model->is_primary) $("input[name=rate]").closest(".form-group").hide(); @endif $(".is_primary_on").on("click", function(){ $("input[name=rate]").closest(".form-group").hide("slow"); }); $(".is_primary_off").on("click", function(){ $("input[name=rate]").closest(".form-group").show("slow"); }); @endsection