@extends('admin.template.master') @section('title')

B2B App Home page section create

@endsection @section('main-content')

Entry

@if(Session::has('message'))
{{Session('message')}}
@endif {!! Form::open(['url' => '/admin/b2b-app-home-page-sections/add' ]) !!}
{!! Form::label('title','B2B Section Title' ) !!} {!! Form::text('title', null, ['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', null, ['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'], null, ['class' => 'form-control']) !!}
{!! Form::close() !!}
@endsection