@extends ('backend.layouts.app') @section ('title', 'Contents Update') @section('page-header')

Contents Management Contents Edit

@endsection @section('content') {{ Form::model($content, ['route' => ['admin.modules.contents.update', $content], 'class' => 'form-horizontal', 'role' => 'form', 'method' => 'PATCH', 'id' => 'edit-partner']) }}

Contents edit

{{ Form::label('Welcome', 'Welcome', ['class' => 'col-lg-2 control-label']) }}
{{ Form::textarea('welcome', null, ['class' => 'form-control', 'id' => 'welcome', 'required' => 'required', 'placeholder' => 'Enter welcome']) }}
{{ Form::label('How it works', 'How it works', ['class' => 'col-lg-2 control-label']) }}
{{ Form::textarea('how_it_works', null, ['class' => 'form-control', 'id' => 'how_it_works', 'required' => 'required', 'placeholder' => 'Enter how it works']) }}
{{ Form::label('solutions_title', 'Solutions Title', ['class' => 'col-lg-2 control-label']) }}
{{ Form::text('solutions_title', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => 'Enter solution title']) }}
{{ Form::label('dashboard_title', 'Dashboard Title', ['class' => 'col-lg-2 control-label']) }}
{{ Form::text('dashboard_title', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => 'Enter dashboard title']) }}
{{ Form::label('dashboard_desc', 'Dashboard Description', ['class' => 'col-lg-2 control-label']) }}
{{ Form::textarea('dashboard_desc', null, ['class' => 'form-control', 'id' => 'dashboard_desc', 'required' => 'required', 'placeholder' => 'Enter dashboard description']) }}
{{ Form::label('benefit_one', 'Benefit 1', ['class' => 'col-lg-2 control-label']) }}
{{ Form::textarea('benefit_one', null, ['class' => 'form-control', 'id' => 'benefit_one', 'required' => 'required', 'placeholder' => 'Enter benefit 1']) }}
{{ Form::label('benefit_two', 'Benefit 2', ['class' => 'col-lg-2 control-label']) }}
{{ Form::textarea('benefit_two', null, ['class' => 'form-control', 'id' => 'benefit_two', 'required' => 'required', 'placeholder' => 'Enter benefit 2']) }}
{{ Form::label('benefit_three', 'Benefit 3', ['class' => 'col-lg-2 control-label']) }}
{{ Form::textarea('benefit_three', null, ['class' => 'form-control', 'id' => 'benefit_three', 'required' => 'required', 'placeholder' => 'Enter benefit 3']) }}
{{ Form::label('benefit_four', 'Benefit 4', ['class' => 'col-lg-2 control-label']) }}
{{ Form::textarea('benefit_four', null, ['class' => 'form-control', 'id' => 'benefit_four', 'required' => 'required', 'placeholder' => 'Enter benefit 4']) }}
{{ Form::label('benefit_five', 'Benefit 5', ['class' => 'col-lg-2 control-label']) }}
{{ Form::textarea('benefit_five', null, ['class' => 'form-control', 'id' => 'benefit_five', 'required' => 'required', 'placeholder' => 'Enter benefit 5']) }}
{{ Form::label('mail_content', 'Mail Content', ['class' => 'col-lg-2 control-label']) }}
{{ Form::textarea('mail_content', null, ['class' => 'form-control', 'id' => 'mail_content', 'required' => 'required', 'placeholder' => 'Enter Mail Content']) }}
{{ Form::label('mail_subject', 'Mail Subject', ['class' => 'col-lg-2 control-label']) }}
{{ Form::text('mail_subject', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => 'Enter Mail Subject']) }}
{{ link_to_route('admin.modules.contents.index', trans('buttons.general.cancel'), [], ['class' => 'btn btn-danger btn-xs']) }}
{{ Form::submit(trans('buttons.general.crud.update'), ['class' => 'btn btn-success btn-xs']) }}
{{ Form::close() }} @endsection @section('after-scripts') @endsection