@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('home_video_title', $edit_data->home_video_title, array('class'=>'form-control', 'placeholder'=>'')) !!}
{!! Form::text('home_video', $edit_data->home_video, array('class'=>'form-control', 'placeholder'=>'only video code ex:6sSynyd')) !!}
Notes : Insert only video code ex: https://www.youtube.com/watch?v=vlDzYIIOYmM
{!! Form::textarea('home_video_description', $edit_data->home_video_description, array('class'=>'form-control wysiwyg', 'placeholder'=>'')) !!}
Max : 100 characters
{!! Form::text('home_check_our_video', $edit_data->home_check_our_video, array('class'=>'form-control', 'placeholder'=>'with Http://')) !!}
with https://
{!! Form::close() !!}
@include('admin::parts/footer')