@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.broadcast.title_singular') }}
@csrf
@if($errors->has('image'))
{{ $errors->first('image') }}
@endif {{ trans('cruds.broadcast.fields.image_helper') }}
@if($errors->has('content'))
{{ $errors->first('content') }}
@endif {{ trans('cruds.broadcast.fields.content_helper') }}
@if($errors->has('target'))
{{ $errors->first('target') }}
@endif {{ trans('cruds.broadcast.fields.target_helper') }}
@if($errors->has('start_datetime'))
{{ $errors->first('start_datetime') }}
@endif {{ trans('cruds.broadcast.fields.start_datetime_helper') }}
@endsection @section('scripts') @endsection