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

Contents Management Contents Edit

@endsection @section('content') {{ Form::open(['route' => 'admin.modules.contents.update', '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']) }}
{{ 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