|
@@ -0,0 +1,65 @@
|
|
|
|
+@extends('admin.invitations.view')
|
|
|
|
+@section('content-inner')
|
|
|
|
+
|
|
|
|
+ <div class="form-contents"><div class="failed-form-contents">
|
|
|
|
+
|
|
|
|
+ <h4 class="d-flex m-0 p-3 stag-heading stag-heading-modal">
|
|
|
|
+ <div>Update Basic</div>
|
|
|
|
+ <div class="ml-auto">
|
|
|
|
+ <a class="text-secondary" href="#" up-close>
|
|
|
|
+ <i class="fa fa-times"></i>
|
|
|
|
+ </a>
|
|
|
|
+ </div>
|
|
|
|
+ </h4>
|
|
|
|
+
|
|
|
|
+ <form action="/post-to-api"
|
|
|
|
+ up-target="#main-content" up-history="false" up-fail-target=".failed-form-contents" up-reveal="false"
|
|
|
|
+ method="post" enctype="multipart/form-data"
|
|
|
|
+ class="border-top px-3 pt-3 pb-1 custom-submit">
|
|
|
|
+ @csrf
|
|
|
|
+
|
|
|
|
+ @if (session('message'))
|
|
|
|
+ <div class="alert alert-danger">{{ session('message') }}</div>
|
|
|
|
+ @endif
|
|
|
|
+
|
|
|
|
+ <input type="hidden" name="_uid" value="{{ $record->uid }}">
|
|
|
|
+ <input type="hidden" name="_api" value="/api/invitation/updateBasic">
|
|
|
|
+ <input type="hidden" name="_success" value="{{route('invitations-view', ['uid' => $record->uid])}}">
|
|
|
|
+ <input type="hidden" name="_return" value="{{route('invitations_SINGLE-ACTION_updateBasic', ['uid' => $record->uid])}}">
|
|
|
|
+ <div class='form-group mb-3'>
|
|
|
|
+<label class='control-label'>First Name </label>
|
|
|
|
+<input class='form-control' type='text' name='firstName' value='{{ old('firstName') ? old('firstName') : $record->first_name }}' >
|
|
|
|
+</div>
|
|
|
|
+<div class='form-group mb-3'>
|
|
|
|
+<label class='control-label'>Last Name </label>
|
|
|
|
+<input class='form-control' type='text' name='lastName' value='{{ old('lastName') ? old('lastName') : $record->last_name }}' >
|
|
|
|
+</div>
|
|
|
|
+<div class='form-group mb-3'>
|
|
|
|
+<label class='control-label'>Dob </label>
|
|
|
|
+<input class='form-control' type='date' name='dob' value='{{ old('dob') ? old('dob') : $record->dob }}' >
|
|
|
|
+</div>
|
|
|
|
+<div class='form-group mb-3'>
|
|
|
|
+<label class='control-label'>Mcn </label>
|
|
|
|
+<input class='form-control' type='text' name='mcn' value='{{ old('mcn') ? old('mcn') : $record->mcn }}' >
|
|
|
|
+</div>
|
|
|
|
+<div class='form-group mb-3'>
|
|
|
|
+<label class='control-label'>Email </label>
|
|
|
|
+<input class='form-control' type='text' name='email' value='{{ old('email') ? old('email') : $record->email }}' >
|
|
|
|
+</div>
|
|
|
|
+<div class='form-group mb-3'>
|
|
|
|
+<label class='control-label'>Cell Number </label>
|
|
|
|
+<input class='form-control' type='text' name='cellNumber' value='{{ old('cellNumber') ? old('cellNumber') : $record->cell_number }}' >
|
|
|
|
+</div>
|
|
|
|
+<div class='form-group mb-3'>
|
|
|
|
+<label class='control-label'>Memo </label>
|
|
|
|
+<input class='form-control' type='text' name='memo' value='{{ old('memo') ? old('memo') : $record->memo }}' >
|
|
|
|
+</div>
|
|
|
|
+ <div class="form-group mb-3 d-flex justify-content-center">
|
|
|
|
+ <button class="btn btn-sm btn-primary mr-3 px-5">Submit</button>
|
|
|
|
+ <a href="{{route('invitations-view', ['uid' => $record->uid])}}" class="btn btn-sm btn-default px-5" up-close>Cancel</a>
|
|
|
|
+ </div>
|
|
|
|
+ </form>
|
|
|
|
+
|
|
|
|
+ </div></div>
|
|
|
|
+
|
|
|
|
+@endsection
|