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

{{ $pageNote }}

{!! Form::open(array('url'=>'banner/save', 'class'=>'form-horizontal','files' => true , 'parsley-validate'=>'','novalidate'=>' ')) !!}
{!! Form::hidden('banner_id', $row['banner_id'],array('class'=>'form-control', 'placeholder'=>'', )) !!}
{!! Form::text('banner_title', $row['banner_title'],array('class'=>'form-control', 'placeholder'=>'', 'required'=>'true' )) !!}
  • This value is required.
{!! Form::checkbox('banner_status','1', $row['banner_status'],array('class'=>'form-control', 'placeholder'=>'', )) !!}
{!! Form::hidden('banner_order', $row['banner_order'],array('class'=>'form-control', 'placeholder'=>'', )) !!}
{!! Form::hidden('created_at', $row['created_at'],array('class'=>'form-control datetime', 'style'=>'width:150px !important;')) !!}
{!! Form::hidden('updated_at', $row['updated_at'],array('class'=>'form-control datetime', 'style'=>'width:150px !important;')) !!}
{!! Form::hidden('deleted_at', $row['deleted_at'],array('class'=>'form-control datetime', 'style'=>'width:150px !important;')) !!}
{!! Form::close() !!}
@stop