@extends('main') @section('content') @php $info = \App\LableDisplayInfo::where('idCraft', '=', $craft->idCraft)->first(); @endphp

{{$craft->name}} : Label Display Information

{!! Form::open(['url' => 'label-display-info', 'class' => 'form-horizontal']) !!}

Select {{$craft->name}} Information You want to display on Verified Screen

physicalParam == 'Y') checked @endif>
labParam == 'Y') checked @endif>
{!! Form::textarea('description',$craft->description,['class' => 'form-control','size'=>'30x8','readonly'=>'readonly']) !!}
{!! Form::textarea('instructions',$craft->washing_instructions,['class' => 'form-control','size'=>'30x8','readonly'=>'readonly']) !!}
@if($craft->type == 'GI')
authorised_user == 'Y') checked @endif>
authorised_user_address == 'Y') checked @endif>
artisan == 'Y') checked @endif>
artisan_address == 'Y') checked @endif>
@else
company == 'Y') checked @endif>
company_address == 'Y') checked @endif>
artisan == 'Y') checked @endif>
artisan_address == 'Y') checked @endif>
@endif
{!! Form::close() !!}
@stop