@extends("layout") @section("content")
{{ trans('messages.select-equipment') }}
@if($errors->all())
{{ HTML::ul($errors->all()) }}
@endif @if (Session::has('message'))
{{ Session::get('message') }}
@endif
{{ Form::open(array('method' => 'PUT', 'id' => 'form-edit-client')) }}
{{ Form::label('equipment', trans('messages.equipment')) }} {{ Form::select('client', array(0 => ' - ')+$client, '', array('class' => 'form-control', 'id' => 'client', 'onchange' => "fetch_equipment_details()")) }}
{{ Form::close() }}
  • Page Help
  • This Page list all interfaced equipment
  • Please select the equipment and see how it is interfaced with BLIS
  • Check the configurations that must be set in the BLISInterfaceClient.ini file
{{ Session::put('SOURCE_URL', URL::full()) }}
@stop