@extends('_version_02.commons.layouts.admin') @section('content') @include('_version_02.commons.layouts.partials._alert')
{{App\Language::trans('Testing Barcode Generator')}}

{!!Form::model($model, ['class'=>'form-horizontal','method'=>'get'])!!}
{{App\Language::trans('Enter email(s) of the account that going to test , scan barcode to access testing environment. ')}}
{!! Form::label('tester_email', App\Language::trans('Email'), ['class'=>'col-sm-2 col-form-label']) !!}
{!! Form::text('tester_email', '', ['id'=>'tester_email', 'rows'=>'10' , 'cols'=>'80','class'=>'form-control' , 'placeholder'=>'Enter Tester Email']) !!} {!!$errors->first('tester_email', '')!!}
@if(isset($tester_barcodes)) @if(count($tester_barcodes) > 0)
{{App\Language::trans('Scan The Barcode To Access Testing Site')}}

@foreach($tester_barcodes as $barcode)

@endforeach
@endif @endif
{!!Form::close()!!}
@endsection @section('script') @endsection