Added email and password reset
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
<h3 class="box-title">Setup Configuration</h3>
|
||||
</div>
|
||||
|
||||
<form role="form" method="POST">
|
||||
<form role="form" method="POST" enctype="multipart/form-data">
|
||||
{{ csrf_field() }}
|
||||
|
||||
@if(session()->has('success'))
|
||||
|
@@ -4,11 +4,16 @@
|
||||
<span class="help-block">{{ $errors->first('site_name') }}</span>
|
||||
</div>
|
||||
|
||||
<div class="form-group col-sm-12 {{ $errors->has('site_description') ? 'has-error' : '' }}">
|
||||
<div class="form-group col-sm-9 {{ $errors->has('site_description') ? 'has-error' : '' }}">
|
||||
<label for="site_description">Site Description</label>
|
||||
<textarea class="form-control" id="site_description" name="site_description" placeholder="Site Description" rows="3">{{ old('site_description',$so->site_description) }}</textarea>
|
||||
<span class="help-block">{{ $errors->first('site_description') }}</span>
|
||||
</div>
|
||||
<div class="form-group col-sm-3 {{ $errors->has('site_logo') ? 'has-error' : '' }}">
|
||||
<label for="site_logo">Site Logo</label>
|
||||
<input type="file" class="form-control" id="site_logo" name="site_logo"><img class="col-sm-12" src="{{ asset($so->site_logo) }}">
|
||||
<span class="help-block">{{ $errors->first('site_logo') }}</span>
|
||||
</div>
|
||||
|
||||
<fieldset class="form-group col-sm-12">
|
||||
<label>Site Address</label>
|
||||
|
Reference in New Issue
Block a user