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

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

{!! Form::text('title', null, ['required', 'placeholder' => __('title'), 'class' => 'form-control']) !!}
{!! Form::textarea('description', null, ['rows' => '2', 'placeholder' => __('description'), 'class' => 'form-control']) !!}
{{-- --}}
{{ __('note') }} : {{__('Please note that only image or document files are allowed for upload')}}.
@if (!Auth::user()->hasRole('Teacher'))
@endif
@if (Auth::user()->hasRole('Teacher'))
@endif
{{-- --}}

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

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