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

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

{{ Form::model($slider, array('method' => 'put', 'route' => array('slider.update', $slider->id),'files' => true)) }}
{{ Form::label('header', ucwords(Lang::get('sliders.header'))) }} {{ Form::textarea('header',$slider->header)}} {{ Form::label('body', ucwords(Lang::get('sliders.body'))) }} {{ Form::textarea('body',$slider->body)}}
{{ Form::label('active', ucwords(Lang::get('sliders.active'))) }} {{ Form::select('active', array('1' => 'Yes', '0' => 'No'),($slider->active == "1" ? 1 : 0) ) }} {{ Form::label('current_image', ucwords(Lang::get('sliders.current_image'))) }}
slide  image

{{ Form::label('image', ucwords(Lang::get('sliders.change_image'))) }} {{ Form::file('image') }} {{ Form::submit(ucwords(Lang::get('countries.edit')), array('class' => 'button radius')) }} {{ Form::close() }}
@stop @section('js') @parent @stop