@extends('layouts.app') @section('content')
@foreach($settingdata as $view)

{{$view->app_name}}

{{ trans('app.sign_up_to_find_interesting_thing')}}

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

{{ trans('app.have_account_already_lease_go_to')}} {{ trans('app.sign_in')}}

@endforeach @endsection