@extends('layouts.master') @section('content')

{{ ucwords(Lang::get('sliders.add')) }}

{{ Form::open(array('route' => array('slider.store'),'files' => true)) }} {{ Form::label('header', ucwords(Lang::get('sliders.header'))) }} {{ Form::textarea('header',Input::old("header"), array('placeholder' => ucfirst(Lang::get('sliders.placeholder_header')), 'class' =>'ckeditor')) }} {{--{{ Form::label('body', ucwords(Lang::get('sliders.body'))) }}--}} {{--{{ Form::textarea('body',Input::old("body"), array('placeholder' => ucfirst(Lang::get('sliders.placeholder_body')))) }}--}} {{--{{ Form::label('link_target', ucwords(Lang::get('sliders.link_target'))) }}--}} {{--{{ Form::text('link_target',Input::old("link_target"), array('placeholder' => ucfirst(Lang::get('sliders.placeholder_link_target')))) }}--}} {{ Form::label('active', ucwords(Lang::get('sliders.active'))) }} {{ Form::select('active', array('1' => 'Yes', '0' => 'No')) }} {{--{{ Form::label('image', ucwords(Lang::get('sliders.slider_image'))) }}--}} {{--{{ Form::file('image') }}--}} {{ Form::submit(ucwords(Lang::get('countries.add')), array('class' => 'button radius')) }} {{ Form::close() }}
@stop @section('js') @parent @stop