Skip to content

Instantly share code, notes, and snippets.

@MageParts
Created April 21, 2015 13:24
Show Gist options
  • Save MageParts/f7373fbc3e5eb47138b6 to your computer and use it in GitHub Desktop.
Save MageParts/f7373fbc3e5eb47138b6 to your computer and use it in GitHub Desktop.
<div class="country-group-list">
<div class="country-group country-group-original">
<ul class="country-list"></ul>
<div class="form-group">
{!! Form::label('group_country_id', Lang::get('user.country')) !!}
{!! Form::select('group_country_id', Country::lists('name', 'id'), null, ['class' => 'form-control', 'data-group-el' => 'country']) !!}
</div>
<div class="form-group">
{!! Form::label('group_fee', Lang::get('user.shipping.fee')) !!}
{!! Form::input('text', 'group_fee', null, ['class' => 'form-control', 'data-group-el' => 'fee']) !!}
</div>
<div class="form-group">
{!! Form::label('group_fee_additional', Lang::get('user.shipping.fee_additional')) !!}
{!! Form::input('text', 'group_fee_additional', null, ['class' => 'form-control', 'data-group-el' => 'fee-additional']) !!}
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment