message box

This commit is contained in:
medet97 2020-05-15 15:58:50 +05:00
parent 5e1b96f1e0
commit c59f5e5336
1 changed files with 2 additions and 2 deletions

View File

@ -75,12 +75,12 @@
</div> </div>
<div class="form-group {{ ($errors->has('attachment')) ? 'has-error' : '' }}"> <div class="form-group {{ ($errors->has('attachment')) ? 'has-error' : '' }}">
{!! Form::label('attachment', trans("ClientSide.attachment"), array('class'=>'control-label')) !!} {!! Form::label('attachment', trans("ClientSide.attachment"), array('class'=>'control-label')) !!}
{!! Form::file('attachment') !!} {!! Form::file('attachment', ['class'=>'form-control', 'style'=>'width: fit-content']) !!}
@if($errors->has('attachment')) @if($errors->has('attachment'))
<p class="help-block">{{ $errors->first('attachment') }}</p> <p class="help-block">{{ $errors->first('attachment') }}</p>
@endif @endif
</div> </div>
{!! Form::submit(trans("ClientSide.reply"), ['class'=>"btn btn-success", 'style'=>'background-color: #d43d34; border: #d43d34']) !!} {!! Form::submit(trans("ClientSide.reply"), ['class'=>"btn btn-success", 'style'=>'background-color: #d43d34; border: #d43d34; padding: 8px 35px']) !!}
</form> </form>
</div> </div>
</div> </div>