@extends('adminlte::master') @section('adminlte_css') @stack('css') @yield('css') @stop @section('classes_body', 'register-page') @php( $login_url = View::getSection('login_url') ?? config('adminlte.login_url', 'login') ) @php( $register_url = View::getSection('register_url') ?? config('adminlte.register_url', 'register') ) @php( $dashboard_url = View::getSection('dashboard_url') ?? config('adminlte.dashboard_url', 'home') ) @if (config('adminlte.use_route_url', false)) @php( $login_url = $login_url ? route($login_url) : '' ) @php( $register_url = $register_url ? route($register_url) : '' ) @php( $dashboard_url = $dashboard_url ? route($dashboard_url) : '' ) @else @php( $login_url = $login_url ? url($login_url) : '' ) @php( $register_url = $register_url ? url($register_url) : '' ) @php( $dashboard_url = $dashboard_url ? url($dashboard_url) : '' ) @endif @section('body')
{{ csrf_field() }}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@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

{{ __('adminlte::adminlte.i_already_have_a_membership') }}

@stop @section('adminlte_js') @stack('js') @yield('js') @stop