@extends('index') @section('web')

{{trans('web.year')}} {{$config->year}}

{{$user->username}}

{{trans('web.email')}}: {{$user->email}}

{{trans('web.identify')}}: {{$user->identify}}

{{trans('web.gender')}}: {{$user->gender == 'male' ? trans('web.male') : trans('web.female') }}

{{trans('web.nationality')}}: {{$user->nationality}}

{{trans('web.birthday')}}: {{$user->birthday}}

{{trans('web.address')}}: {{$user->address}}

{{trans('web.mobile')}}: {{$user->mobile}}

{{trans('web.mobile2')}}: {{$user->mobile2}}

@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{csrf_field()}}
{{trans('web.subscription_type')}}
{{trans('web.subscription_notes')}}
@endsection