{!! Form::open(['url' => isset($categories) ? '/admin/category-homepage-sections' : '/admin/homepage-sections']) !!}
@if(isset($categories))
{!! Form::label('Category Name') !!}
{!! Form::select('category_name',$categories, null, ['class' => 'form-control', 'placeholder' => 'Enter category name']) !!}
@if ($errors->has('category_name')){!! $errors->first('section_name') !!}@endif
@endif
{!! Form::label('Section Name') !!}
{!! Form::text('section_name', null, ['class' => 'form-control', 'placeholder' => 'Enter section name']) !!}
@if ($errors->has('section_name')){!! $errors->first('section_name') !!}@endif
{!! Form::label('Section Position') !!}
@if ($errors->has('section_position')){!! $errors->first('section_position') !!}@endif
{!! Form::label('Status') !!}
{!! Form::select('section_is_exist', [1 => 'Active', 0 => 'Inactive'], null, ['class' => 'form-control']) !!}