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

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

{!! Form::hidden('user_id', Auth::user()->id, ['id' => 'user_id']) !!}
{!! 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, and file must be less than')}} {{ $file_upload_size_limit }} {{ __('MB') }}.
{{--
--}}
{{-- @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