{!! Form::label('Status') !!}
{!! Form::select('status_id', $statuses, null, ['class' => 'form-control-admin role-select']) !!}
{!! Form::label('Title') !!}
*
{!! Form::text('title', null, ['class' => 'form-control-admin', 'placeholder' => 'Title']) !!}
@if(isset($create) && $hackathon->hacks->count() >= 1 || isset($hack) && $hack->is_first != 1)
{!! Form::label('Sms Text') !!}
@if(isset($create))
(Sending test sms will be available as soon as you save hack)
@endif
{!! Form::text('sms_text', null, ['class' => 'form-control-admin', 'placeholder' => 'SMS Text']) !!}
@if(isset($hack))
@endif
{!! Form::label('Email Text') !!}
@if(isset($create))
(Sending test email will be available as soon as you save hack)
@endif
{!! Form::textarea('email_text', null, ['class' => 'form-control-admin', 'placeholder' => 'Email Text']) !!}
@if(isset($hack))
@endif
@endif
@if(isset($links))
@else
@endif
@if(!isset($videos))
@else
@endif
@if(!isset($audios))
@else
@endif
{!! Form::label('Content') !!}
*
{!! Form::textarea('content', null, ['class' => 'form-control-admin summernote', 'placeholder' => 'Content']) !!}
{!! Form::label('Content For Unlogged Users') !!}
{!! Form::textarea('content_unlogged', null, ['class' => 'form-control-admin summernote', 'placeholder' => 'Content For Unlogged Users']) !!}