{!! Form::open(['method' => 'PUT', 'url' => '/admin/notices/edit/' .$notice->notice_id, 'enctype' => 'multipart/form-data']) !!}
{!! Form::label('Notice') !!}
{!! Form::textarea('notice', $notice->notice, ['class' => 'form-control', 'placeholder' => 'Notice', 'id' => 'notice']) !!}
@if ($errors->has('notice'))
{!! $errors->first('notice') !!}@endif