|
1 |
| -@extends('layouts.app', ['class' => 'register-page', 'page' => _('Register Page'), 'contentClass' => 'register-page']) |
| 1 | +@extends('layouts.app', ['class' => 'register-page', 'page' => __('Register Page'), 'contentClass' => 'register-page']) |
2 | 2 |
|
3 | 3 | @section('content')
|
4 | 4 | <div class="row">
|
|
8 | 8 | <i class="tim-icons icon-wifi"></i>
|
9 | 9 | </div>
|
10 | 10 | <div class="description">
|
11 |
| - <h3 class="info-title">{{ _('Marketing') }}</h3> |
| 11 | + <h3 class="info-title">{{ __('Marketing') }}</h3> |
12 | 12 | <p class="description">
|
13 |
| - {{ _('We\'ve created the marketing campaign of the website. It was a very interesting collaboration.') }} |
| 13 | + {{ __('We\'ve created the marketing campaign of the website. It was a very interesting collaboration.') }} |
14 | 14 | </p>
|
15 | 15 | </div>
|
16 | 16 | </div>
|
|
19 | 19 | <i class="tim-icons icon-triangle-right-17"></i>
|
20 | 20 | </div>
|
21 | 21 | <div class="description">
|
22 |
| - <h3 class="info-title">{{ _('Fully Coded in HTML5') }}</h3> |
| 22 | + <h3 class="info-title">{{ __('Fully Coded in HTML5') }}</h3> |
23 | 23 | <p class="description">
|
24 |
| - {{ _('We\'ve developed the website with HTML5 and CSS3. The client has access to the code using GitHub.') }} |
| 24 | + {{ __('We\'ve developed the website with HTML5 and CSS3. The client has access to the code using GitHub.') }} |
25 | 25 | </p>
|
26 | 26 | </div>
|
27 | 27 | </div>
|
|
30 | 30 | <i class="tim-icons icon-trophy"></i>
|
31 | 31 | </div>
|
32 | 32 | <div class="description">
|
33 |
| - <h3 class="info-title">{{ _('Built Audience') }}</h3> |
| 33 | + <h3 class="info-title">{{ __('Built Audience') }}</h3> |
34 | 34 | <p class="description">
|
35 |
| - {{ _('There is also a Fully Customizable CMS Admin Dashboard for this product.') }} |
| 35 | + {{ __('There is also a Fully Customizable CMS Admin Dashboard for this product.') }} |
36 | 36 | </p>
|
37 | 37 | </div>
|
38 | 38 | </div>
|
|
41 | 41 | <div class="card card-register card-white">
|
42 | 42 | <div class="card-header">
|
43 | 43 | <img class="card-img" src="{{ asset('black') }}/img/card-primary.png" alt="Card image">
|
44 |
| - <h4 class="card-title">{{ _('Register') }}</h4> |
| 44 | + <h4 class="card-title">{{ __('Register') }}</h4> |
45 | 45 | </div>
|
46 | 46 | <form class="form" method="post" action="{{ route('register') }}">
|
47 | 47 | @csrf
|
|
53 | 53 | <i class="tim-icons icon-single-02"></i>
|
54 | 54 | </div>
|
55 | 55 | </div>
|
56 |
| - <input type="text" name="name" class="form-control{{ $errors->has('name') ? ' is-invalid' : '' }}" placeholder="{{ _('Name') }}"> |
| 56 | + <input type="text" name="name" class="form-control{{ $errors->has('name') ? ' is-invalid' : '' }}" placeholder="{{ __('Name') }}"> |
57 | 57 | @include('alerts.feedback', ['field' => 'name'])
|
58 | 58 | </div>
|
59 | 59 | <div class="input-group{{ $errors->has('email') ? ' has-danger' : '' }}">
|
|
62 | 62 | <i class="tim-icons icon-email-85"></i>
|
63 | 63 | </div>
|
64 | 64 | </div>
|
65 |
| - <input type="email" name="email" class="form-control{{ $errors->has('email') ? ' is-invalid' : '' }}" placeholder="{{ _('Email') }}"> |
| 65 | + <input type="email" name="email" class="form-control{{ $errors->has('email') ? ' is-invalid' : '' }}" placeholder="{{ __('Email') }}"> |
66 | 66 | @include('alerts.feedback', ['field' => 'email'])
|
67 | 67 | </div>
|
68 | 68 | <div class="input-group{{ $errors->has('password') ? ' has-danger' : '' }}">
|
|
71 | 71 | <i class="tim-icons icon-lock-circle"></i>
|
72 | 72 | </div>
|
73 | 73 | </div>
|
74 |
| - <input type="password" name="password" class="form-control{{ $errors->has('password') ? ' is-invalid' : '' }}" placeholder="{{ _('Password') }}"> |
| 74 | + <input type="password" name="password" class="form-control{{ $errors->has('password') ? ' is-invalid' : '' }}" placeholder="{{ __('Password') }}"> |
75 | 75 | @include('alerts.feedback', ['field' => 'password'])
|
76 | 76 | </div>
|
77 | 77 | <div class="input-group">
|
|
80 | 80 | <i class="tim-icons icon-lock-circle"></i>
|
81 | 81 | </div>
|
82 | 82 | </div>
|
83 |
| - <input type="password" name="password_confirmation" class="form-control" placeholder="{{ _('Confirm Password') }}"> |
| 83 | + <input type="password" name="password_confirmation" class="form-control" placeholder="{{ __('Confirm Password') }}"> |
84 | 84 | </div>
|
85 | 85 | <div class="form-check text-left">
|
86 | 86 | <label class="form-check-label">
|
87 | 87 | <input class="form-check-input" type="checkbox">
|
88 | 88 | <span class="form-check-sign"></span>
|
89 |
| - {{ _('I agree to the') }} |
90 |
| - <a href="#">{{ _('terms and conditions') }}</a>. |
| 89 | + {{ __('I agree to the') }} |
| 90 | + <a href="#">{{ __('terms and conditions') }}</a>. |
91 | 91 | </label>
|
92 | 92 | </div>
|
93 | 93 | </div>
|
94 | 94 | <div class="card-footer">
|
95 |
| - <button type="submit" class="btn btn-primary btn-round btn-lg">{{ _('Get Started') }}</button> |
| 95 | + <button type="submit" class="btn btn-primary btn-round btn-lg">{{ __('Get Started') }}</button> |
96 | 96 | </div>
|
97 | 97 | </form>
|
98 | 98 | </div>
|
|
0 commit comments