@extends('cfp.layouts.master') @section('css') @endsection @section('content')

{{ __("cfp.EditNotice") }} #{{ $news->SRL }}

@include('cfp.components.error_alert')
SRL) }}"> @csrf @method("PUT")
@include("cfp.components.form-group", [ "label" => "Title", "name" => "title", "value" => $news->NOTICE_TITLE, "placeholder" => "Title of notice ..." ])
@include("cfp.components.form-group", [ "label" => "Arabic Title", "name" => "titleArabic", "value" => $news->TITLE_ARABIC, "placeholder" => "Title in arabic ..." ])
@include("cfp.components.form-group", [ "control" => "textarea", "summernote" => true, "label" => "English Text", "name" => "text", "value" => $news->NOTICE_TEXT, "placeholder" => "Texto of the notice ..." ]) @include("cfp.components.form-group", [ "control" => "textarea", "summernote" => true, "label" => "Arabic Text", "name" => "textArabic", "value" => $news->NOTICE_ARABIC, "placeholder" => "Arabic text ..." ])
@include("cfp.components.form-group", [ "no_label" => true, "label" => "URL of image", "name" => "url", "extra_cls" => "preview", "value" => $news->BIG_IMAGE_URL ])
@include("cfp.components.form-group", [ "no_label" => true, "label" => "Lobby URL", "name" => "urlLobby", "extra_cls" => "previewTwo", "value" => $news->SMALL_IMAGE_URL ])
{{ $news->author->NICK ?? "N/A" }}
{{ Helper::date_stringFormat($news->REG_DATE) }}
{{ Helper::date_stringFormat($news->LAST_UPD_DATE) }}
@include('cfp.components.form-group', ["control" => "button", "value" => "Update Notice"])
@endsection @section('js') @endsection