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

{{ __('create') . ' ' . __('announcement') }}

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

{{ __('list') . ' ' . __('announcement') }}

{{ __('id') }} {{ __('no.') }} {{ __('title') }} {{ __('description') }} {{ __('assign_to') }} {{ __('files') }} {{ __('action') }}
@endsection @section('js') @endsection