@extends('adminlte::page')
@section('title', config('app.name') . ' | ' . __('Application form management tool'))
@section('content_header')
{{__('Administration')}} / {{__('Form builder')}}
@stop
@section('js')
@if (session()->has('success'))
@elseif(session()->has('error'))
@foreach(session('error') as $error)
@endforeach
@endif
@if(session()->has('exception'))
@endif
@stop
@section('content')
@stop
@section('footer')
@include('breadcrumbs.dashboard.footer')
@stop