@include('admin::parts/head')
@include('admin::parts/menu')
{!! $breadcrumb !!}

Edit Form

{!! Alert::get('success') !!}
{!! Form::open(array('files'=>true, 'id'=>'form-scaffold'), 'POST') !!}
{!! Form::text('meta_title', $edit_data->meta_title, array('class'=>'form-control', 'placeholder'=>'Insert your GA Code here')) !!}
{!! Form::textarea('meta_description', $edit_data->meta_description, array('class'=>'form-control', 'placeholder'=>'Insert your GA Code here')) !!}
{!! Form::text('meta_keywords', $edit_data->meta_keywords, array('class'=>'form-control', 'placeholder'=>'Insert your GA Code here')) !!}
{!! Form::close() !!}
@include('admin::parts/footer')