image Create Notification
@if($errors->any())
@foreach ($errors->all() as $error) {{ $error }}
@endforeach
@endif {!! Form::open(['route' => 'notifications.store', 'files' => true]) !!}
{!! Form::label('title', 'Title', ['class' => 'form-label']) !!} {!! Form::text('title', old('title'), ['class' => 'form-control', 'required']) !!}
{!! Form::label('description', 'Description', ['class' => 'form-label']) !!} {!! Form::textarea('description', old('description'), ['class' => 'form-control', 'required']) !!}
{!! Form::label('image', 'Image', ['class' => 'form-label']) !!} {!! Form::file('image', ['class' => 'form-control-file', 'required']) !!}
{!! Form::label('status', 'Status', ['class' => 'form-label']) !!}
{!! Form::radio('status', 'active', old('status') == 'active', ['class' => 'form-check-input', 'id' => 'active']) !!} {!! Form::label('active', 'Active', ['class' => 'form-check-label']) !!}
{!! Form::radio('status', 'inactive', old('status') == 'inactive', ['class' => 'form-check-input', 'id' => 'inactive']) !!} {!! Form::label('inactive', 'Inactive', ['class' => 'form-check-label']) !!}
{!! Form::close() !!}