{!! Form::open(['url' => '/admin/scrolls']) !!}
{!! Form::label('name','Content') !!}
{!! Form::textarea('scroll_content','',['class' => 'form-control', 'placeholder'=> 'Content','rows' => 3]) !!}
@if ($errors->has('scroll_content'))
{!! $errors->first('scroll_content') !!}
@endif
{!! Form::label('url','URL') !!}
{!! Form::text('scroll_url','',['class' => 'form-control', 'placeholder'=> 'Enter URL']) !!}
@if ($errors->has('scroll_url'))
{!! $errors->first('scroll_url') !!}
@endif
{!! Form::label('Scroll Position') !!}
{!! Form::select('scroll_position', $scroll_position, null, ['class' => 'form-control', 'placeholder' => 'Select scroll position', 'id' => 'scroll_position']) !!}
@if ($errors->has('scroll_position'))
{!! $errors->first('scroll_position') !!}@endif
{!! Form::label('status','Status') !!}
{!! Form::select('scroll_is_exist',['1' => 'Active','0' => 'Inactive'],null,['class' =>'form-control']) !!}
@if ($errors->has('scroll_is_exist'))
{!! $errors->first('scroll_is_exist') !!}
@endif
{!! Form::close() !!}