@extends('frontend.index') @section('content')
@if(isset($data))
  • {{ $data->name }}

  • @lang('frontend.name') : {{ $data->name }}
    @lang('frontend.designation') : {{ $data->designation }}
    @lang('frontend.mobile') : {{ $data->mobile }}
    @lang('frontend.mail') : {{ $data->email }}
    @lang('frontend.gender') : {{ $data->gender }}
    @lang('frontend.blood_group') : {{ $data->blood }}
    @lang('frontend.religion') : {{ $data->religion }}
    @lang('frontend.join_date') : {{ $data->join_date }}
    @lang('frontend.present_adress') : {{ $data->present_address }}
    @lang('frontend.permenant_adress') : {{ $data->parmanent_address }}
    @lang('frontend.education') :

    {!! $data->education !!}

  • @else Not Found... @endif
    @include('frontend.sidebar')
    @endsection