33 lines
985 B
PHP
Executable file
33 lines
985 B
PHP
Executable file
@extends('portal.layouts.layout-2')
|
|
|
|
@section('content')
|
|
|
|
@if ($errors->any())
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<div class="alert alert-danger">
|
|
<ul>
|
|
@foreach ($errors->all() as $error)
|
|
<li>{{ $error }}</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|
|
<h4 class="font-weight-bold py-2 mb-2">
|
|
{{ __('navigation.my_data') }}
|
|
</h4>
|
|
|
|
{!! Form::open(['action' => route('portal.my_data.store'), 'method' => 'POST', 'class' => 'form-horizontal', 'id'=>'lead-form-validation']) !!}
|
|
@include('portal.customer._edit_form')
|
|
<div class="text-left mt-3">
|
|
<button type="submit" class="btn btn-secondary" name="action" value="shopping-user-store">{{ __('save changes') }}</button>
|
|
</div>
|
|
{!! Form::close() !!}
|
|
|
|
|
|
|
|
|
|
@endsection
|