@extends('admin.layouts.default') {{-- Page title --}} @section('title') Create feature @parent @stop {{-- page level styles --}} @section('header_styles') @stop {{-- Page content --}} @section('content')
Create feature
@if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
Module
@foreach($modules as $module)
{{ $module->name }}
@endforeach
Feature
@stop