{!! Form::label('title', 'العنوان') !!} {!! Form::text('title', old('title'), ['class' => 'form-control', 'placeholder' => 'Enter Event Title', 'required']) !!}
{!! Form::label('image', 'الصورة') !!} {!! Form::file('image', ['class' => 'form-control ']) !!} @if ( isset($row) && $row->image) {{ $row->title }} @endif
{!! Form::label('day_date', 'تاريخ الحدث') !!} {!! Form::date('day_date', old('day_date'), ['class' => 'form-control', 'required']) !!}
{!! Form::label('excerpt', 'الوصف المختصر') !!} {!! Form::textarea('excerpt', old('excerpt'), ['class' => 'form-control', 'rows' => 3, 'placeholder' => 'Enter Short Description (Optional)']) !!}
{!! Form::label('description', 'الوصف الكامل') !!} {!! Form::textarea('description', old('description'), ['class' => 'form-control mytextarea', 'rows' => 5, 'placeholder' => 'Enter Event Description']) !!}
{!! Form::select("active", GenStatus(), null,['class'=>'form-control'])!!}
{!! Form::number("sort_by",null,['class'=>'form-control'])!!}
الغاء