@extends('web.layouts.app') @section('title',trans('site.account')) @section('content')
{{csrf_field()}}

@lang('site.first_name')

@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif

@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif

@lang('site.mobile')

@if ($errors->has('mobile')) {{ $errors->first('mobile') }} @endif

@lang('site.email')

@if ($errors->has('email')) {{ $errors->first('email') }} @endif
{{csrf_field()}}

@lang('site.NewPassword')

@if ($errors->has('password')) {{ $errors->first('password') }} @endif

@lang('site.confirmPassword')

@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
@endsection