{!! Form::label('name', 'Name:') !!}
{!! Form::text('name', null,['class'=>'form-control', 'required', 'placeholder'=>'Enter trade show title ...']) !!}
{!! Form::label('link', 'Link URL:') !!}
{!! Form::text('link', null,['class'=>'form-control', 'placeholder'=>'Enter trade show link URL ...']) !!}
{!! Form::label('booth', 'Booth Number:') !!}
{!! Form::text('booth', null,['class'=>'form-control', 'placeholder'=>'Enter booth number ...']) !!}
{!! Form::label('location', 'Location:') !!}
{!! Form::text('location', null,['class'=>'form-control', 'required', 'placeholder'=>'Enter location ...']) !!}
{!! Form::label('dates', 'Dates:') !!}
{!! Form::text('dates', null,['class'=>'form-control', 'required', 'placeholder'=>'Enter dates ...']) !!}
{!! Form::label('details_link', 'Details Link URL:') !!}
{!! Form::text('details_link', null,['class'=>'form-control', 'placeholder'=>'Enter trade show link to detail page ...']) !!}
{!! Form::label('details', 'Content:') !!}
{!! Form::textarea('details', null,['class'=>'form-control ckeditor', 'placeholder'=>'Content ...', 'rows'=>'3']) !!}
{!! Form::label('position', 'Display Position:') !!}
{!! Form::text('position', null,['class'=>'form-control', 'placeholder'=>'Display Position ...']) !!}
{!! Form::label('start_date', 'Start Date:') !!}
{!! Form::date('start_date', null,['class'=>'form-control', 'required', 'placeholder'=>'Enter start date ...']) !!}
{!! Form::label('end_date', 'End Date:') !!}
{!! Form::date('end_date', null,['class'=>'form-control', 'required','placeholder'=>'Enter end date ...']) !!}
{!! Form::label('', 'Status:') !!}
{!! Form::radio('status', 'Y', (@$data['status'] == 'Y') ? true : false, ['required']) !!} Active
{!! Form::radio('status', 'N', (@$data['status'] == 'N') ? true : false, ['required']) !!} In-active