@extends('admin.layouts.master') @section('content')

{{!isset($hub['title']) ? 'Create Leaders Hub' : 'Update Leaders Hub'}}

@if(session()->has('success'))
{{ session()->get('success') }}
@endif @if(session()->has('error'))
{{ session()->get('error') }}
@endif @if ($errors->any())

@endif

{{!isset($hub['title']) ? 'Create Leaders Hub' : 'Update Leaders Hub'}}

@csrf @if(isset($hub['title'])) {{ method_field('PUT') }} @endif
@if (is_array($hub->bullets)) @foreach ($hub->bullets as $index => $bullet)
@endforeach @else

No bullets found. Please add some.

@endif
@endsection