@if(Session::has('message'))
@endif
{!! Form::open(['url' => '/admin/b2b-app-home-page-sections/edit/'. $section->id ]) !!}
{!! Form::label('title','B2B Section Title' ) !!}
{!! Form::text('title', $section->title, ['class' => 'form-control', 'placeholder' => 'B2B Section Title', 'id' => 'title']) !!}
@if ($errors->has('title'))
{!! $errors->first('title') !!}
@endif
{!! Form::label('sub_title','B2B Section Sub Title' ) !!}
{!! Form::text('sub_title', $section->sub_title, ['class' => 'form-control', 'placeholder' => 'B2B Section Sub Title', 'id' => 'sub_title']) !!}
@if ($errors->has('sub_title'))
{!! $errors->first('sub_title') !!}
@endif
{!! Form::label('Status') !!}
{!! Form::select('is_active', ['active' => 'active', 'inactive' => 'inactive'], $section->is_active, ['class' => 'form-control']) !!}
{!! Form::close() !!}