@extends('layouts.user')
@section('sidebar')
@include('frontend.components.user-layout-sidebar')
@endsection
@section('body_class')
fill_data specifications
@endsection
@section('content')
@if(session()->has('success'))
{{ session()->get('success') }}
@endif
@if(isset ($errors) && count($errors) > 0)
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
مواصفات شريك الحياة
الرجوع
@if($edit)
{!! Form::open(['route' => ['partner.update',$request->id], 'method' => 'PUT','files' => true, 'id' => 'belongsTo_type-form','class'=>'row']) !!}
@else
{!! Form::open(['route' => 'partner.store', 'files' => true, 'id' => 'belongsTo_type-form','class'=>'row']) !!}
@endif
@csrf
@php
$gender = Auth::user()->gender;
@endphp
@if($gender == 'male')
@endif
@if($gender == 'female')
@endif
{!! Form::close() !!}
@endsection
@section('scripts')
@endsection