Commit 82347ee0 by fezrul

translation changes

parent a5fb6afb
......@@ -17,7 +17,7 @@
</div>
<div class="ui field left icon input fluid">
<!-- <input type="password" name="password" placeholder="Password"> -->
<input type="password" name="password" placeholder="@lang('auth::auth.password')">
<input type="password" name="password" placeholder="@lang('auth::password')">
<i class="lock icon"></i>
</div>
@if(config('laravolt.auth.captcha'))
......@@ -27,18 +27,18 @@
@endif
<div class="ui field">
<!-- <button type="submit" class="ui fluid button primary">Login</button> -->
<button type="submit" class="ui fluid button primary">@lang('auth::auth.login')</button>
<button type="submit" class="ui fluid button primary">@lang('auth::login')</button>
</div>
<div class="ui equal width grid field">
<div class="column left aligned">
<div class="ui checkbox">
<input type="checkbox" name="remember" {{ request()->old('remember')?'checked':'' }}>
<!-- <label>Remember me</label> -->
<label>@lang('auth::auth.remember')</label>
<label>@lang('auth::remember')</label>
</div>
</div>
<div class="column right aligned">
<a href="{{route('auth::forgot.show')}}">@lang('auth::auth.forgot_password')</a>
<a href="{{route('auth::forgot.show')}}">@lang('auth::forgot_password')</a>
</div>
</div>
......@@ -48,8 +48,8 @@
@if(config('laravolt.auth.registration.enable'))
<div class="ui divider hidden section"></div>
@lang('auth::auth.not_registered_yet?')
<a href="{{ route('auth::register.show') }}">@lang('auth::auth.register_here')</a>
@lang('auth::not_registered_yet?')
<a href="{{ route('auth::register.show') }}">@lang('auth::register_here')</a>
@endif
@endsection
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment