@extends('layouts.admin')
@php
$form = config('admin.create_blast');
$module_inputs = $form['modules']['input'];
$can_send_blast = !$account->is_agency && havePermissionByEntityKey('BLAST_BTN_SEND_TEST');
@endphp
@section('style')
@parent
@endSection
@section('content')
{{-- @include inherits all parent variables --}}
@if(!$can_send_blast)
Your account currently does not have the permission to create a blast. Please reach out to your designated sKale account manager to request access
@endif
@include('admin.components.create_blast.step1')
@include('admin.components.create_blast.step2')
@include('admin.components.create_blast.step3')
@component('components.utility.modal_confirmation')
@slot('slot_header')
@endslot
@slot('slot_body_info')
Are you sure to overwrite current settings?
@endslot
@endcomponent
@endsection
@section('script')
@parent
@endSection