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

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

{{csrf_field()}}
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{trans('web.identify')}}
{{trans('web.first_name')}}
{{trans('web.second_name')}}
{{trans('web.third_name')}}
{{trans('web.last_name')}}
{{trans('web.gender')}}
{{trans('web.nationality')}}
{{trans('web.birthday')}}
{{trans('web.email')}}
{{trans('web.city')}}
{{trans('web.state')}}
{{trans('web.mobile')}}
{{trans('web.mobile2')}}
{{trans('web.subscription_type')}}
{{trans('web.subscription_notes')}}
@endsection