message box

This commit is contained in:
medet97 2020-05-15 15:20:31 +05:00
parent 1482531bba
commit 7bc4e34746
1 changed files with 3 additions and 3 deletions

View File

@ -75,12 +75,12 @@
</div>
<div class="form-group {{ ($errors->has('attachment')) ? 'has-error' : '' }}">
{!! Form::label('attachment', trans("ClientSide.attachment"), array('class'=>'control-label')) !!}
{!! Form::file('attachment'), array('class'=>'form-control') !!}
{!! Form::file('attachment') !!}
@if($errors->has('attachment'))
<p class="help-block">{{ $errors->first('attachment') }}e</p>
<p class="help-block">{{ $errors->first('attachment') }}</p>
@endif
</div>
{!! Form::submit(trans("ClientSide.reply")) !!}
{!! Form::submit(trans("ClientSide.reply"), ['class'=>"btn btn-success"]) !!}
</form>
</div>
</div>