MINI Sh3ll
@extends('layouts.main')
@section('title', 'Support')
@section('content')
<!--begin::Portlet-->
<div class="m-portlet m-portlet--tab">
<div class="m-portlet__head">
<div class="m-portlet__head-caption">
<div class="m-portlet__head-title">
<span class="m-portlet__head-icon m--hide">
<i class="la la-gear"></i>
</span>
<h3 class="m-portlet__head-text">
Leave a message here
</h3>
</div>
</div>
</div>
<form class="m-form m-form--fit m-form--label-align-right" autocomplete="off" action="{{route('support-mail')}}" method="POST" role="form" data-parsley-validate="parsley">
{{ csrf_field() }}
<div class="m-portlet__body">
<div class="row">
<div class="col-md-6">
<div class="form-group m-form__group">
<label class="">
Request From
</label>
<input type="text" class="form-control m-input" readonly="" name="request_from" value="{{ucfirst(Auth::user()->first_name)}}"/>
<span class="m-form__help"></span>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="form-group m-form__group">
<label class="">
Response To
</label>
<input type="email" class="form-control m-input" readonly="" name="response_to" placeholder="Email" value="{{env('SUPPORT_MAIL', '')}}" />
<span class="m-form__help"></span>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="form-group m-form__group">
<label for="exampleInputEmail1">
Message <span class="text-danger">*</span>
</label>
<textarea type="text" class="form-control m-input" name="message" placeholder="Message"></textarea>
<span class="m-form__help"></span>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="form-group m-form__group">
<b>NOTE :</b> Lorem Ipsum is simply dummy text...
</div>
</div>
</div>
</div>
<div class="m-portlet__foot m-portlet__foot--fit">
<div class="m-form__actions">
<button type="submit" class="btn btn-primary">
Submit
</button>
<button type="reset" class="btn btn-secondary">
Cancel
</button>
</div>
</div>
</form>
</div>
<!--end::Portlet-->
@endsection
OHA YOOOO