{{-- Name: serverLimit.partials.edit Author: JH2 Created: 2015-12-23 --}} @extends('partials.box') @section($content_id) {{-- @include('partials.bounce-stick', ['statsData' => $receiver->bounceStickData() ]) --}} {!! Form::model($limit, ['method' => 'PUT', 'class' => 'form-horizontal', 'autocomplete' => 'off', 'route' => ['admin.limit.update', $limit->id]]) !!}
{!! Form::label('text', Lang::get('serverLimit.domain_name'), ['class' => 'col-md-2 control-label']) !!}
{!! Form::text('domain_name', old('domain_name'), ['class' => 'form-control']) !!} {!! $errors->first('domain_name', ':message') !!}
{!! Form::label('text', Lang::get('serverLimit.rate_limit_h'), ['class' => 'col-md-2 control-label']) !!}
{!! Form::text('rate_limit_h', old('rate_limit_h'), ['class' => 'form-control']) !!} {!! $errors->first('rate_limit_h', ':message') !!}

{!! Form::submit(Lang::get('serverLimit.form.save'), ['class' => 'btn btn-primary']) !!} {!! Form::close() !!}
@stop