@extends('layouts.master') @section('title') {{ __('notification') }} @endsection @section('content')

{{ __('create_notification') }}

@csrf
{!! Form::text('title', null, ['required','class' => 'form-control','placeholder' => __('title')]) !!}
{!! Form::textarea('message', null, ['required','class' => 'form-control','placeholder' => __('message'), 'rows' => 3]) !!}

{{ __('list_notification') }}

{{ __('id') }} {{ __('no.') }} {{ __('image') }} {{ __('title') }} {{ __('message') }} {{ __('type') }} {{ __('action') }}
@endsection @section('script') @endsection