@extends('admin.layouts.master') @section('title','Create a new announcement') @section('maincontent') @include('admin.layouts.topbar',$data)
@if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
{{ __('Add') }} {{ __('User') }}
{{ csrf_field() }}
{{ __('Course') }}
*
{{ $cor->title }}
{{ __('User') }}
@php $users = App\User::all(); @endphp @foreach($users as $us)
{{$us->fname}}
@endforeach
{{ __('Announcement') }}:
*
{{ __('Status') }}:
{{ __('Reset') }}
{{ __('Create') }}
@endsection @section('script') @endsection