message box
This commit is contained in:
parent
5e1b96f1e0
commit
c59f5e5336
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue