@extends('admin.template.master') @section('stylesheets') {!! Html::style('assets/admin/bower_components/select2/dist/css/select2.min.css') !!} @endsection @section('title')

Scroll

@endsection @section('main-content')

Update

{!! 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('Date') !!} {!! Form::date('scroll_date', \Carbon\Carbon::now(), ['class' => 'form-control']) !!}
{!! Form::label('Time') !!} {!! Form::time('scroll_time', \Carbon\Carbon::now(), ['class' => 'form-control']) !!}
{!! 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() !!}
@endsection @section('javascripts') {!! Html::script('assets/admin/bower_components/select2/dist/js/select2.full.min.js') !!} @endsection