You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
741 B
32 lines
741 B
@extends('layouts.user-profile')
|
|
|
|
@section('subtitle', trans('user.profile'))
|
|
|
|
@section('user-content')
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
@include('users.partials.profile')
|
|
@include('users.partials.siblings')
|
|
</div>
|
|
<div class="col-md-6">
|
|
@include('users.partials.parent-spouse')
|
|
@include('users.partials.childs')
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
|
|
@section ('ext_css')
|
|
<link rel="stylesheet" href="{{ asset('css/plugins/select2.min.css') }}">
|
|
@endsection
|
|
|
|
@section ('ext_js')
|
|
<script src="{{ asset('js/plugins/select2.min.js') }}"></script>
|
|
@endsection
|
|
|
|
@section ('script')
|
|
<script>
|
|
(function () {
|
|
$('select').select2();
|
|
})();
|
|
</script>
|
|
@endsection
|