@extends('backend.layouts.app') @section('breadcrumb') @endsection @section('content')
{{ __('Add Section') }}
{!! Form::open(['route' => 'admin.homesections.create', 'id' => 'typeForm', 'method' => 'GET']) !!}
{!! Form::close() !!} {!! Form::open(['route' => ['admin.homesections.store'], 'method' => 'POST']) !!} @include('backend.forms.homesection', [ 'type' => request('type') ]) {!! Form::close() !!}
@endsection