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.
40 lines
1.0 KiB
40 lines
1.0 KiB
@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') }}">
|
|
<link rel="stylesheet" href="{{ asset('css/plugins/jquery.datetimepicker.css') }}">
|
|
@endsection
|
|
|
|
@section ('ext_js')
|
|
<script src="{{ asset('js/plugins/select2.min.js') }}"></script>
|
|
<script src="{{ asset('js/plugins/jquery.datetimepicker.js') }}"></script>
|
|
@endsection
|
|
|
|
@section ('script')
|
|
<script>
|
|
(function () {
|
|
$('select').select2();
|
|
$('input[name=marriage_date]').datetimepicker({
|
|
timepicker:false,
|
|
format:'Y-m-d',
|
|
closeOnDateSelect: true,
|
|
scrollInput: false
|
|
});
|
|
})();
|
|
</script>
|
|
@endsection
|