@extends('admin.layouts.master') @section('title','Edit Announcement') @section('maincontent') @include('admin.layouts.topbar',$data)
@if ($errors->any())
@foreach($errors->all() as $error)
{{ $error}}
×
@endforeach
@endif
{{ __('Edit') }} {{ __('Announcement') }}
{{ __('Back') }}
{{ csrf_field() }} {{ method_field('PUT') }}
@foreach($courses as $cou)
courses->id == $cou->id ? 'selected' : ''}}>{{ $cou->title}}
@endforeach
{{ __('User') }}
@foreach($user as $cu)
user->id == $cu->id ? 'selected' : ''}}>{{ $cu->fname}}
@endforeach
{{ __('Announcement') }}:
*
{{$annou->announsment}}
{{ __('Status') }}:
status == '1' ? 'checked' : '' }} />
{{ __('Reset') }}
{{ __('Update') }}
@endsection