{{ $title }}
{{ Form::open(['url' => route('displayunits.store'), 'method'=>'POST', 'name' => 'displayunit', 'id' => 'displayunit']) }}
{{ Form::close() }}
{{ Form::label( __('lbl.name') ) }}
{{ Form::text('name', old('name'), ["class"=>"form-control mxlen_30","placeholder"=>__('lbl.name'),"id"=>"name","name"=>"name"]) }}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{{ Form::label( __('lbl.ipaddress') ) }}
@if ($errors->has('ip_address'))
{{ $errors->first('ip_address') }}
@endif
{{ Form::button(' '. __('lbl.save'),["type"=>"submit","name"=>"submit","value"=>"submit","class"=>"clickbtncommon btn-sm btn btn-primary ".$add_edit_allowed.""]) }}
{{ __('lbl.cancel') }}